Autoplay Stopper for YouTube
Chrome Extension for Turning off Autoplay on YouTube.
Qu'est-ce que Autoplay Stopper for YouTube ?
Autoplay Stopper for YouTube est une extension Chrome développée par https://fiahfy.blogspot.com, et sa fonction principale est "Chrome Extension for Turning off Autoplay on YouTube.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Autoplay Stopper for YouTube
Téléchargez les fichiers d'extension Autoplay Stopper for YouTube 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
- Turn off autoplay on video and channel page.
Informations de Base sur l'Extension
Nom | Autoplay Stopper for YouTube |
ID | nllpbgemclgokfdjneckdfnhjpigolko |
URL Officiel | https://chromewebstore.google.com/detail/autoplay-stopper-for-yout/nllpbgemclgokfdjneckdfnhjpigolko |
Description | Chrome Extension for Turning off Autoplay on YouTube. |
Taille du Fichier | 145 KB |
Nombre d'Installations | 1,329 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2022-12-31 |
Date de Publication | 2020-08-28 |
Évaluation | 3.57/5 Total 14 Évaluations |
Développeur | https://fiahfy.blogspot.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Autoplay Stopper for YouTube", "description": "Chrome Extension for Turning off Autoplay on YouTube.", "version": "0.0.3" } |