YouStopper for YouTube™
Prevents YouTube™ videos autoplay
什么是YouStopper for YouTube™?
YouStopper for YouTube™是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Prevents YouTube™ videos autoplay”。
扩展截图
下载YouStopper for YouTube™扩展crx文件
下载YouStopper for YouTube™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Prevents YouTube™ videos from starting to play automatically when you open them. Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin. Doesn't stop autoplaying in playlists. Source available at https://github.com/youstopper-dev/youstopper
扩展基本信息
名称 | YouStopper for YouTube™ |
ID | hmfocflebeolgkehnimcchankdjljepb |
官方URL | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
简介 | Prevents YouTube™ videos autoplay |
文件大小 | 51.95 KB |
安装次数 | 1,482 |
当前版本 | 0.2 |
更新时间 | 2018-02-18 |
上架时间 | 2018-02-18 |
评分 | 3.56/5 共41次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "YouStopper", "description": "__MSG_extension_description__", "version": "0.2", "default_locale": "en", "icons": { "32": "icons\/youstop_icon_32.png", "48": "icons\/youstop_icon_48.png", "64": "icons\/youstop_icon_64.png", "128": "icons\/youstop_icon_128.png", "512": "icons\/youstop_icon_512.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "page.js" ], "browser_action": { "default_icon": { "32": "icons\/youstop_icon_32.png", "64": "icons\/youstop_icon_64.png" }, "default_title": "__MSG_ba_click2disable__" }, "permissions": [ "storage" ], "minimum_chrome_version": "50" } |