Netflix Stop Autoplay
Stop netflix from autoplaying!
What is Netflix Stop Autoplay?
Netflix Stop Autoplay is a Chrome extension developed by marcdwyer1738, and its main feature is "Stop netflix from autoplaying!".
Extension Screenshots
Download Netflix Stop Autoplay Extension CRX File
Download Netflix Stop Autoplay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
Official URL | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
Description | Stop netflix from autoplaying! |
File Size | 455 KB |
Installation Count | 143 |
Current Version | 2.7 |
Last Updated | 2020-09-13 |
Publish Date | 2020-05-24 |
Rating | 4.67/5 Total 3 Ratings |
Developer | marcdwyer1738 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/MarcDwyer/netflix-stop-autoplay |
Help Page URL | https://github.com/MarcDwyer/netflix-stop-autoplay |
Supported Languages | 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" ] } |