Screen Capture and download

Capture current page and download the image.

Cos'è Screen Capture and download?

Screen Capture and download è un'estensione di Chrome sviluppata da extensioncreatorsllc, e la sua funzione principale è "Capture current page and download the image.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Screen Capture and download

Scarica i file di estensione Screen Capture and download 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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

Informazioni di Base sull'Estensione

Nome Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
URL Ufficiale https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Descrizione Capture current page and download the image.
Dimensione del File 157 KB
Conteggio Installazioni 6,726
Versione Corrente 1.5
Ultimo Aggiornamento 2019-08-27
Data di Pubblicazione 2019-08-27
Valutazione 4.52/5 Totale 25 Valutazioni
Sviluppatore extensioncreatorsllc
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://bornsecret.com/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}