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 |
官方網址 | 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:\/\/*\/*" ] } ] } |