Auto Pause Video
Automatically pauses html 5 videos after a page loads
Wat is Auto Pause Video?
Auto Pause Video is een Chrome-extensie ontwikkeld door kfegen, en de belangrijkste functie is "Automatically pauses html 5 videos after a page loads".
Download het CRX-bestand van de extensie Auto Pause Video
Download Auto Pause Video-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple extension that pauses videos when the page is loaded.
Basisinformatie over de Extensie
Naam | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
Officiële URL | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
Beschrijving | Automatically pauses html 5 videos after a page loads |
Bestandsgrootte | 3.19 KB |
Aantal Installaties | 91 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-06-05 |
Publicatiedatum | 2014-06-05 |
Beoordeling | 3.33/5 Totaal 6 Beoordelingen |
Ontwikkelaar | kfegen |
Betalingswijze | free |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |