Stop AutoPlay

This extension is meant to stop all playing videos

Stop AutoPlayとは何ですか?

Stop AutoPlayはroastarioによって開発されたChromeの拡張機能で、その主な機能は「This extension is meant to stop all playing videos」です。

Stop AutoPlay拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Stop AutoPlay Stop AutoPlay
ID ablmlhnccodemhiobfclbpicbpljldji
公式URL https://chrome.google.com/webstore/detail/stop-autoplay/ablmlhnccodemhiobfclbpicbpljldji
説明 This extension is meant to stop all playing videos
ファイルサイズ 6.4 KB
インストール数 76
現在のバージョン 0.0.3
最終更新日 2017-10-30
公開日 2017-10-30
評価 4.00/5 合計 1 レビュー
開発者 roastario
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop AutoPlay",
    "description": "This extension is meant to stop all playing videos",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}