Auto-pause Pandora
Start pandora.com in paused state.
What is Auto-pause Pandora?
Auto-pause Pandora is a Chrome extension developed by gcomstock, and its main feature is "Start pandora.com in paused state.".
Extension Screenshots
Download Auto-pause Pandora Extension CRX File
Download Auto-pause Pandora extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Save your eardrums! A simple extension that pauses Pandora.com on load.
Extension Basic Information
Name | |
ID | mldfienndfoldagiiohohelafcjhlahk |
Official URL | https://chrome.google.com/webstore/detail/auto-pause-pandora/mldfienndfoldagiiohohelafcjhlahk |
Description | Start pandora.com in paused state. |
File Size | 56.65 KB |
Installation Count | 29 |
Current Version | 1.1 |
Last Updated | 2014-03-03 |
Publish Date | 2014-03-03 |
Rating | 4.50/5 Total 2 Ratings |
Developer | gcomstock |
Payment Type | free |
Supported Languages | 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" } } |