Test Screenshot Extension

Demonstrate screenshot functionality in the chrome.tabs api.

Wat is Test Screenshot Extension?

Test Screenshot Extension is een Chrome-extensie ontwikkeld door https://c-ev.com, en de belangrijkste functie is "Demonstrate screenshot functionality in the chrome.tabs api.".

Download het CRX-bestand van de extensie Test Screenshot Extension

Download Test Screenshot Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Allows to create sceenshots                    

Basisinformatie over de Extensie

Naam Test Screenshot Extension Test Screenshot Extension
ID ingdionndoopkgjhhfociobjglhdhegl
Officiële URL https://chromewebstore.google.com/detail/test-screenshot-extension/ingdionndoopkgjhhfociobjglhdhegl
Beschrijving Demonstrate screenshot functionality in the chrome.tabs api.
Bestandsgrootte 6.83 KB
Aantal Installaties 40
Huidige Versie 1.3
Laatst Bijgewerkt 2017-02-28
Publicatiedatum 2017-02-27
Ontwikkelaar https://c-ev.com
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}