Test Screenshot Extension

Demonstrate screenshot functionality in the chrome.tabs api.

Test Screenshot Extensionとは何ですか?

Test Screenshot Extensionはhttps://c-ev.comによって開発されたChromeの拡張機能で、その主な機能は「Demonstrate screenshot functionality in the chrome.tabs api.」です。

Test Screenshot Extension拡張機能のCRXファイルをダウンロード

Test Screenshot Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Allows to create sceenshots                    

拡張機能の基本情報

名前 Test Screenshot Extension Test Screenshot Extension
ID ingdionndoopkgjhhfociobjglhdhegl
公式URL https://chromewebstore.google.com/detail/test-screenshot-extension/ingdionndoopkgjhhfociobjglhdhegl
説明 Demonstrate screenshot functionality in the chrome.tabs api.
ファイルサイズ 6.83 KB
インストール数 40
現在のバージョン 1.3
最終更新日 2017-02-28
公開日 2017-02-27
開発者 https://c-ev.com
支払い方法 free
対応言語 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"
            ]
        }
    ]
}