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.
Was ist No AutoPlay?
No AutoPlay ist eine Chrome-Erweiterung, die von jccovey entwickelt wurde, und ihr Hauptmerkmal ist "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.".
No AutoPlay-Erweiterungs-CRX-Datei herunterladen
Laden Sie No 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
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.
Grundlegende Informationen zur Erweiterung
Name | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
Offizielle URL | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
Beschreibung | 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. |
Dateigröße | 4.07 KB |
Installationsanzahl | 116 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2017-12-06 |
Veröffentlichungsdatum | 2017-12-06 |
Bewertung | 3.00/5 Insgesamt 7 Bewertungen |
Entwickler | jccovey |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |