Auto-pause Pandora
Start pandora.com in paused state.
什么是Auto-pause Pandora?
Auto-pause Pandora是由gcomstock开发的Chrome扩展程序,该扩展的主要功能是“Start pandora.com in paused state.”。
扩展截图
下载Auto-pause Pandora扩展crx文件
下载Auto-pause Pandora扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Save your eardrums! A simple extension that pauses Pandora.com on load. 扩展基本信息
| 名称 | |
| ID | mldfienndfoldagiiohohelafcjhlahk |
| 官方URL | https://chrome.google.com/webstore/detail/auto-pause-pandora/mldfienndfoldagiiohohelafcjhlahk |
| 简介 | Start pandora.com in paused state. |
| 文件大小 | 56.65 KB |
| 安装次数 | 29 |
| 当前版本 | 1.1 |
| 更新时间 | 2014-03-03 |
| 上架时间 | 2014-03-03 |
| 评分 | 4.50/5 共2次评分 |
| 开发者 | gcomstock |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Auto-pause Pandora",
"description": "Start pandora.com in paused state.",
"icons": {
"128": "icon_128.png"
},
"version": "1.1",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.pandora.com\/*",
"*:\/\/*.savagebeast.com\/*"
],
"js": [
"jq.js",
"pausePandora.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": {
"19": "icon19_off.png",
"38": "icon38_off.png"
},
"default_title": "Pandora will auto-pause"
}
} | |