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"
}
} | |