Element Screenshot

Take screenshot of any HTML element on a webpage.

Co to jest Element Screenshot?

Element Screenshot to rozszerzenie Chrome opracowane przez Tahin Rahman, a jego główną funkcją jest „Take screenshot of any HTML element on a webpage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Element Screenshot

Pobierz pliki rozszerzeń Element Screenshot 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

                        Element Screenshot
===============

This is a Chrome extension which will take screenshot of any HTML element in a webpage.

Click the camera icon in the URL bar, hover over the element you want to capture and click to take the screenshot.

This extension was originally developed by Robinson and available here (which is not maintained anymore): https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg

My version is a bug fixed version of the original.                    

Podstawowe informacje o rozszerzeniu

Nazwa Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
Oficjalny URL https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
Opis Take screenshot of any HTML element on a webpage.
Rozmiar pliku 13.83 KB
Liczba instalacji 2,354
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-08-24
Data Publikacji 2015-08-24
Ocena 3.54/5 Łącznie 46 Oceny
Deweloper Tahin Rahman
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.tahins.me
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Screenshot",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Take screenshot of any HTML element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "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"
    }
}