Test Screenshot Extension

Demonstrate screenshot functionality in the chrome.tabs api.

Cos'è Test Screenshot Extension?

Test Screenshot Extension è un'estensione di Chrome sviluppata da https://c-ev.com, e la sua funzione principale è "Demonstrate screenshot functionality in the chrome.tabs api.".

Scarica il file CRX dell'estensione Test Screenshot Extension

Scarica i file di estensione Test Screenshot Extension 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

                        Allows to create sceenshots                    

Informazioni di Base sull'Estensione

Nome Test Screenshot Extension Test Screenshot Extension
ID ingdionndoopkgjhhfociobjglhdhegl
URL Ufficiale https://chromewebstore.google.com/detail/test-screenshot-extension/ingdionndoopkgjhhfociobjglhdhegl
Descrizione Demonstrate screenshot functionality in the chrome.tabs api.
Dimensione del File 6.83 KB
Conteggio Installazioni 40
Versione Corrente 1.3
Ultimo Aggiornamento 2017-02-28
Data di Pubblicazione 2017-02-27
Sviluppatore https://c-ev.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Test Screenshot Extension",
    "version": "1.3",
    "description": "Demonstrate screenshot functionality in the chrome.tabs api.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "camera.png",
        "default_title": "Take a screen shot!"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}