Element Capture

Screen capture any element on a webpage.

Co to jest Element Capture?

Element Capture to rozszerzenie Chrome opracowane przez tlrobinson, a jego główną funkcją jest „Screen capture any element on a webpage.”.

Pobierz plik CRX rozszerzenia Element Capture

Pobierz pliki rozszerzeń Element Capture w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
Oficjalny URL https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Opis Screen capture any element on a webpage.
Rozmiar pliku 34.67 KB
Liczba instalacji 828
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-09-30
Data Publikacji 2015-09-30
Ocena 2.83/5 Łącznie 42 Oceny
Deweloper tlrobinson
Typ Płatności free
Strona Rozszerzenia https://github.com/tlrobinson/element-capture
Obsługiwane Języki 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"
    }
}