Mute Everything
Mutes everything by pausing all audio and video.
什麼是Mute Everything?
Mute Everything是由Bozozo開發的Chrome擴展程式,該擴展的主要功能是“Mutes everything by pausing all audio and video.”。
擴展截圖
下載Mute Everything擴展crx文件
下載Mute Everything擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Mute Everything stops all audio playing in your browser with a single click. Enjoy the silence!
Do you ever find yourself scrolling through a bunch of tabs in search of that one video that's still playing? Simply press the Mute Everything button to pause it instantly.
* This extension works by pausing all audio and video elements
* Includes support for common music services (GrooveShark, Pandora, SoundCloud, and many more)
* Works excellently with YouTube videos and HTML5 media
* Plug-in objects can not be paused; they are inaccessible). Instead, such objects are temporarily removed, and can be individually restored with a single click.
This extension is far from perfect... please report any problems through the Feedback page. Please don't use reviews to report specific bugs, as I cannot respond to those. 擴展基本資訊
| 名稱 | |
| ID | jcdccblikjhgpbjhfleoidoeildbcima |
| 官方網址 | https://chromewebstore.google.com/detail/mute-everything/jcdccblikjhgpbjhfleoidoeildbcima |
| 簡介 | Mutes everything by pausing all audio and video. |
| 檔案大小 | 42.14 KB |
| 安裝次數 | 551 |
| 目前版本 | 0.1 |
| 更新時間 | 2014-01-25 |
| 上架時間 | 2014-01-25 |
| 評分 | 1.88/5 共 34 次評分 |
| 開發者 | Bozozo |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mute Everything",
"version": "0.1",
"author": "Arno van den Brink",
"description": "Mutes everything by pausing all audio and video.",
"offline_enabled": true,
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "img\/icon-16.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"persistent": false,
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "img\/icon-19.png",
"38": "img\/icon-38.png"
},
"default_title": "Mute Everything!"
}
} | |