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 |
Eメール | [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" ] } |