Youtube Pause
Pause a vídeo on youtube
什么是Youtube Pause?
Youtube Pause是由Valter Barros开发的Chrome扩展程序,该扩展的主要功能是“Pause a vídeo on youtube”。
扩展截图
下载Youtube Pause扩展crx文件
下载Youtube Pause扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Is a extension to play and pause your youtube vídeos without need change the focus on browser 扩展基本信息
| 名称 | |
| ID | hkkgahcplbiednmfhllhpgpemgenigdg |
| 官方URL | https://chromewebstore.google.com/detail/youtube-pause/hkkgahcplbiednmfhllhpgpemgenigdg |
| 简介 | Pause a vídeo on youtube |
| 文件大小 | 15.35 KB |
| 安装次数 | 17 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2019-04-01 |
| 上架时间 | 2019-03-31 |
| 评分 | 4.50/5 共8次评分 |
| 开发者 | Valter Barros |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/valterbarros/button-pause-youtube |
| 帮助页面URL | https://github.com/valterbarros/button-pause-youtube/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Pause",
"version": "1.3.1",
"manifest_version": 2,
"description": "Pause a v\u00eddeo on youtube",
"background": {
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_icon": "icon-pause-32.png",
"default_title": "Pause youtube video",
"default_popup": "html\/popup.html"
},
"icons": {
"128": "icon-pause-128.png",
"16": "icon-pause-16.png",
"64": "icon-pause-64.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/**"
],
"js": [
"js\/contentscript.js"
]
}
],
"permissions": [
"activeTab",
"tabs",
"https:\/\/www.youtube.com\/**"
],
"commands": {
"playPause": {
"suggested_key": {
"default": "MediaPlayPause"
},
"global": true,
"description": "Toggle play\/pause"
},
"playNext": {
"suggested_key": {
"default": "MediaNextTrack"
},
"global": true,
"description": "Play next track"
},
"playPrev": {
"suggested_key": {
"default": "MediaPrevTrack"
},
"global": true,
"description": "Play previous track"
}
}
} | |