Netflix Stop Autoplay
Stop netflix from autoplaying!
什么是Netflix Stop Autoplay?
Netflix Stop Autoplay是由marcdwyer1738开发的Chrome扩展程序,该扩展的主要功能是“Stop netflix from autoplaying!”。
扩展截图
下载Netflix Stop Autoplay扩展crx文件
下载Netflix Stop Autoplay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Prevents Netflix from autoplaying videos on the homepage. Recently Netflix has allowed users to disable autoplaying content on their website. For more details on how to disable see here: https://help.netflix.com/en/node/2102. Experience any issues? Open up an issue in the repository or e-mail me at [email protected]! https://github.com/MarcDwyer/netflix-stop-autoplay changelog: 2.7.0 A lot less code and more efficient 2.5.0: Reverted some optimizations as it introduced new bugs
扩展基本信息
名称 | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
官方URL | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
简介 | Stop netflix from autoplaying! |
文件大小 | 455 KB |
安装次数 | 143 |
当前版本 | 2.7 |
更新时间 | 2020-09-13 |
上架时间 | 2020-05-24 |
评分 | 4.67/5 共3次评分 |
开发者 | marcdwyer1738 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/MarcDwyer/netflix-stop-autoplay |
帮助页面URL | https://github.com/MarcDwyer/netflix-stop-autoplay |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Stop Autoplay", "description": "Stop netflix from autoplaying!", "version": "2.7", "browser_action": { "default_icon": "icon_green.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/", "https:\/\/www.netflix.com\/browse", "https:\/\/www.netflix.com\/browse\/*", "https:\/\/www.netflix.com\/browse\/*\/**" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "icon_green.png", "48": "icon_green.png", "128": "icon_green.png" }, "permissions": [ "storage" ] } |