Auto Pause Video
Automatically pauses html 5 videos after a page loads
什么是Auto Pause Video?
Auto Pause Video是由kfegen开发的Chrome扩展程序,该扩展的主要功能是“Automatically pauses html 5 videos after a page loads”。
下载Auto Pause Video扩展crx文件
下载Auto Pause Video扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension that pauses videos when the page is loaded.
扩展基本信息
名称 | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
官方URL | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
简介 | Automatically pauses html 5 videos after a page loads |
文件大小 | 3.19 KB |
安装次数 | 91 |
当前版本 | 1.0 |
更新时间 | 2014-06-05 |
上架时间 | 2014-06-05 |
评分 | 3.33/5 共6次评分 |
开发者 | kfegen |
付费类型 | free |
支持的语言 | 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:\/\/*\/*" ] } ] } |