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.
Hvad er No AutoPlay?
No AutoPlay er en Chrome-udvidelse udviklet af jccovey, og dens hovedfunktion er "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.".
Download No AutoPlay-udvidelses-CRX-fil
Download No AutoPlay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
Officiel URL | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
Beskrivelse | 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. |
Filstørrelse | 4.07 KB |
Antal Installationer | 116 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2017-12-06 |
Udgivelsesdato | 2017-12-06 |
Bedømmelse | 3.00/5 Samlet 7 Bedømmelser |
Udvikler | jccovey |
Betalingsmetode | free |
Understøttede Sprog | 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 } |