Lightweight Screenshot

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

Co je Lightweight Screenshot?

Lightweight Screenshot je rozšíření Chrome vyvinuté Adam Feor, a jeho hlavní funkcí je „Take screenshots. Also works for full page and custom-size screenshots.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lightweight Screenshot

Stáhněte si soubory rozšíření Lightweight Screenshot 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í

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

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

Název Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
Oficiální URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Popis Take screenshots. Also works for full page and custom-size screenshots.
Velikost souboru 39.4 KB
Počet instalací 478
Aktuální Verze 1.1
Poslední Aktualizace 2018-04-29
Datum Vydání 2018-04-29
Hodnocení 4.00/5 Celkem 5 Hodnocení
Vývojář Adam Feor
Typ Platby free
Podporované Jazyky 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"
    ]
}