Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Co to jest Lightweight Screenshot?

Lightweight Screenshot to rozszerzenie Chrome opracowane przez Adam Feor, a jego główną funkcją jest „Take screenshots. Also works for full page and custom-size screenshots.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lightweight Screenshot

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

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

Podstawowe informacje o rozszerzeniu

Nazwa Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
Oficjalny URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Opis Take screenshots. Also works for full page and custom-size screenshots.
Rozmiar pliku 39.4 KB
Liczba instalacji 478
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-04-29
Data Publikacji 2018-04-29
Ocena 4.00/5 Łącznie 5 Oceny
Deweloper Adam Feor
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}