No AutoPlay
Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
Qu'est-ce que No AutoPlay ?
No AutoPlay est une extension Chrome développée par jccovey, et sa fonction principale est "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.".
Télécharger le fichier CRX de l'extension No AutoPlay
Téléchargez les fichiers d'extension No 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
Limited to YouTube videos. The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.
Informations de Base sur l'Extension
Nom | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
URL Officiel | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
Description | Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab. |
Taille du Fichier | 4.07 KB |
Nombre d'Installations | 116 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-12-06 |
Date de Publication | 2017-12-06 |
Évaluation | 3.00/5 Total 7 Évaluations |
Développeur | jccovey |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No AutoPlay", "version": "1.0.0", "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.", "permissions": [], "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtu.be\/*", "https:\/\/*.youtu.be\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |