YouTube toggle
Pause / play youtube via shortcut from anywhere
什么是YouTube toggle?
YouTube toggle是由Florian Thomas开发的Chrome扩展程序,该扩展的主要功能是“Pause / play youtube via shortcut from anywhere”。
扩展截图
下载YouTube toggle扩展crx文件
下载YouTube toggle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Set the shortcut in your chrome settings and it will pause / play your open YouTube-Video once you press the specified key combination. 扩展基本信息
| 名称 | |
| ID | hpfgcckhlgfbajmpcfbdidecbfmmccjj |
| 官方URL | https://chromewebstore.google.com/detail/youtube-toggle/hpfgcckhlgfbajmpcfbdidecbfmmccjj |
| 简介 | Pause / play youtube via shortcut from anywhere |
| 文件大小 | 7.8 KB |
| 安装次数 | 54 |
| 当前版本 | 1.0 |
| 更新时间 | 2016-06-28 |
| 上架时间 | 2016-06-28 |
| 开发者 | Florian Thomas |
| 付费类型 | free |
| 扩展官网 | https://github.com/Crunch09/youtube-toggle |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube toggle",
"description": "Pause \/ play youtube via shortcut from anywhere",
"version": "1.0",
"permissions": [
"tabs",
"*:\/\/*.youtube.com\/*"
],
"commands": {
"toggle-youtube": {
"suggested_key": {
"default": "Ctrl+Shift+P"
},
"description": "Toggle YouTube"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"128": "icon128_128.png",
"48": "icon48_48.png"
},
"author": "Florian Thomas"
} | |