Auto Pause Video
Automatically pauses html 5 videos after a page loads
Vad är Auto Pause Video?
Auto Pause Video är en Chrome-tillägg utvecklad av kfegen, och dess huvudfunktion är "Automatically pauses html 5 videos after a page loads".
Ladda ner Auto Pause Video-förlängningens CRX-fil
Ladda ner Auto Pause Video-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A simple extension that pauses videos when the page is loaded.
Grundläggande Information om Tillägg
Namn | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
Officiell webbadress | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
Beskrivning | Automatically pauses html 5 videos after a page loads |
Filstorlek | 3.19 KB |
Antal Installationer | 91 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2014-06-05 |
Publiceringsdatum | 2014-06-05 |
Betyg | 3.33/5 Totalt 6 Betyg |
Utvecklare | kfegen |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Pause Video", "description": "Automatically pauses html 5 videos after a page loads", "version": "1.0", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |