Lightweight Screenshot

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

Cos'è Lightweight Screenshot?

Lightweight Screenshot è un'estensione di Chrome sviluppata da Adam Feor, e la sua funzione principale è "Take screenshots. Also works for full page and custom-size screenshots.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Lightweight Screenshot

Scarica i file di estensione Lightweight Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL Ufficiale https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Descrizione Take screenshots. Also works for full page and custom-size screenshots.
Dimensione del File 39.4 KB
Conteggio Installazioni 478
Versione Corrente 1.1
Ultimo Aggiornamento 2018-04-29
Data di Pubblicazione 2018-04-29
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore Adam Feor
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}