Auto Pause Video
Automatically pauses html 5 videos after a page loads
What is Auto Pause Video?
Auto Pause Video is a Chrome extension developed by kfegen, and its main feature is "Automatically pauses html 5 videos after a page loads".
Download Auto Pause Video Extension CRX File
Download Auto Pause Video extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple extension that pauses videos when the page is loaded.
Extension Basic Information
Name | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
Official URL | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
Description | Automatically pauses html 5 videos after a page loads |
File Size | 3.19 KB |
Installation Count | 91 |
Current Version | 1.0 |
Last Updated | 2014-06-05 |
Publish Date | 2014-06-05 |
Rating | 3.33/5 Total 6 Ratings |
Developer | kfegen |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } ] } |