Auto-pause Pandora

Start pandora.com in paused state.

Wat is Auto-pause Pandora?

Auto-pause Pandora is een Chrome-extensie ontwikkeld door gcomstock, en de belangrijkste functie is "Start pandora.com in paused state.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto-pause Pandora

Download Auto-pause Pandora-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Save your eardrums! A simple extension that pauses Pandora.com on load.                    

Basisinformatie over de Extensie

Naam Auto-pause Pandora Auto-pause Pandora
ID mldfienndfoldagiiohohelafcjhlahk
Officiële URL https://chrome.google.com/webstore/detail/auto-pause-pandora/mldfienndfoldagiiohohelafcjhlahk
Beschrijving Start pandora.com in paused state.
Bestandsgrootte 56.65 KB
Aantal Installaties 29
Huidige Versie 1.1
Laatst Bijgewerkt 2014-03-03
Publicatiedatum 2014-03-03
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar gcomstock
Betalingswijze free
Ondersteunde Talen 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"
    }
}