Stop the Music
Pauses all playing YouTube videos.
什麼是Stop the Music?
Stop the Music是由Roxton Labs開發的Chrome擴展程式,該擴展的主要功能是“Pauses all playing YouTube videos.”。
擴展截圖
下載Stop the Music擴展crx文件
下載Stop the Music擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Pauses all playing YouTube videos, even if Chrome is in the background.
* Press once to pause, press again to resume (will only play the most recent video).
* Right click to set keyboard shortcut (supports media keys). 擴展基本資訊
| 名稱 | |
| ID | mmkciobbhadaepjnfjllinlemhcmiihc |
| 官方網址 | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
| 簡介 | Pauses all playing YouTube videos. |
| 檔案大小 | 10.84 KB |
| 安裝次數 | 213 |
| 目前版本 | 1.0 |
| 更新時間 | 2015-11-27 |
| 上架時間 | 2015-11-27 |
| 評分 | 5.00/5 共 7 次評分 |
| 開發者 | Roxton Labs |
| 付費類型 | free |
| 擴展官網 | http://www.roxtonlabs.blogspot.com |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Stop the Music",
"description": "Pauses all playing YouTube videos.",
"version": "1.0",
"author": "Roxton Labs",
"browser_action": {
"default_icon": "stopIcon.png",
"default_title": "Click to pause\/resume background YouTube Videos.\nRight-click to set keyboard shortcut."
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"contextMenus",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"commands": {
"stop-the-music": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Pauses\/resumes background YouTube videos.",
"global": true
}
}
} | |