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
电子邮箱 [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"
        }
    ]
}