Test Screenshot Extension

Demonstrate screenshot functionality in the chrome.tabs api.

What is Test Screenshot Extension?

Test Screenshot Extension is a Chrome extension developed by https://c-ev.com, and its main feature is "Demonstrate screenshot functionality in the chrome.tabs api.".

Download Test Screenshot Extension Extension CRX File

Download Test Screenshot Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Allows to create sceenshots                    

Extension Basic Information

Name Test Screenshot Extension Test Screenshot Extension
ID ingdionndoopkgjhhfociobjglhdhegl
Official URL https://chromewebstore.google.com/detail/test-screenshot-extension/ingdionndoopkgjhhfociobjglhdhegl
Description Demonstrate screenshot functionality in the chrome.tabs api.
File Size 6.83 KB
Installation Count 40
Current Version 1.3
Last Updated 2017-02-28
Publish Date 2017-02-27
Developer https://c-ev.com
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}