Element Capture

Screen capture any element on a webpage.

What is Element Capture?

Element Capture is a Chrome extension developed by tlrobinson, and its main feature is "Screen capture any element on a webpage.".

Download Element Capture Extension CRX File

Download Element Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is a Chrome extension which will screen capture any HTML element of your choosing.

Click the camera icon in the URL bar to begin selection, then hover over any element and click to capture an image and open it in a new tab.                    

Extension Basic Information

Name Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
Official URL https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Description Screen capture any element on a webpage.
File Size 34.67 KB
Installation Count 828
Current Version 1.1
Last Updated 2015-09-30
Publish Date 2015-09-30
Rating 2.83/5 Total 42 Ratings
Developer tlrobinson
Payment Type free
Extension Website https://github.com/tlrobinson/element-capture
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Capture",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Screen capture any element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}