Netflix Stop Autoplay
Stop netflix from autoplaying!
Was ist Netflix Stop Autoplay?
Netflix Stop Autoplay ist eine Chrome-Erweiterung, die von marcdwyer1738 entwickelt wurde, und ihr Hauptmerkmal ist "Stop netflix from autoplaying!".
Erweiterungsscreenshots
Netflix Stop Autoplay-Erweiterungs-CRX-Datei herunterladen
Laden Sie Netflix Stop Autoplay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
Offizielle URL | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
Beschreibung | Stop netflix from autoplaying! |
Dateigröße | 455 KB |
Installationsanzahl | 143 |
Aktuelle Version | 2.7 |
Letztes Update | 2020-09-13 |
Veröffentlichungsdatum | 2020-05-24 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | marcdwyer1738 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/MarcDwyer/netflix-stop-autoplay |
Hilfeseite URL | https://github.com/MarcDwyer/netflix-stop-autoplay |
Unterstützte Sprachen | 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" ] } |