Netflix Stop Autoplay
Stop netflix from autoplaying!
Qu'est-ce que Netflix Stop Autoplay ?
Netflix Stop Autoplay est une extension Chrome développée par marcdwyer1738, et sa fonction principale est "Stop netflix from autoplaying!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix Stop Autoplay
Téléchargez les fichiers d'extension Netflix Stop Autoplay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
URL Officiel | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
Description | Stop netflix from autoplaying! |
Taille du Fichier | 455 KB |
Nombre d'Installations | 143 |
Version Actuelle | 2.7 |
Dernière Mise à Jour | 2020-09-13 |
Date de Publication | 2020-05-24 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | marcdwyer1738 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/MarcDwyer/netflix-stop-autoplay |
URL de la Page d'Aide | https://github.com/MarcDwyer/netflix-stop-autoplay |
Langues Prises en Charge | 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" ] } |