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).
扩展基本信息
名称 | Stop the Music |
ID | mmkciobbhadaepjnfjllinlemhcmiihc |
官方URL | 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 } } } |