playpause
Pause and play again your music
什么是playpause?
playpause是由Deliaz开发的Chrome扩展程序,该扩展的主要功能是“Pause and play again your music”。
扩展截图
下载playpause扩展crx文件
下载playpause扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
PlayPause is a small button which allows to your music and video on pause and then play again.
Currently supports:
– YouTube.com
– SoundCloud.com
– PromoDJ.com
It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page. 扩展基本信息
| 名称 | |
| ID | nphcoecmaigjlaadabjihhoaiaopcadk |
| 官方URL | https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk |
| 简介 | Pause and play again your music |
| 文件大小 | 10.48 KB |
| 安装次数 | 72 |
| 当前版本 | 2.0.1 |
| 更新时间 | 2018-09-11 |
| 上架时间 | 2018-09-10 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | Deliaz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/deliaz/playpause |
| 隐私政策页面URL | https://clipboardextension.com/policy.html |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "playpause",
"version": "2.0.1",
"description": "Pause and play again your music",
"permissions": [
"tabs",
"*:\/\/promodj.com\/*",
"*:\/\/*.youtube.com\/*",
"*:\/\/soundcloud.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "imgs\/38.png"
},
"icons": {
"16": "imgs\/16.png",
"48": "imgs\/48.png",
"128": "imgs\/128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/promodj.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"inject.js"
]
} | |