Element Capture

Screen capture any element on a webpage.

Co je Element Capture?

Element Capture je rozšíření Chrome vyvinuté tlrobinson, a jeho hlavní funkcí je „Screen capture any element on a webpage.“.

Stáhnout soubor CRX rozšíření Element Capture

Stáhněte si soubory rozšíření Element Capture ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
Oficiální URL https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Popis Screen capture any element on a webpage.
Velikost souboru 34.67 KB
Počet instalací 828
Aktuální Verze 1.1
Poslední Aktualizace 2015-09-30
Datum Vydání 2015-09-30
Hodnocení 2.83/5 Celkem 42 Hodnocení
Vývojář tlrobinson
Typ Platby free
Webové stránky Rozšíření https://github.com/tlrobinson/element-capture
Podporované Jazyky 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"
    }
}