PandoraList

This extension creates a playlist off of Pandora.

Co je PandoraList?

PandoraList je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension creates a playlist off of Pandora.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření PandoraList

Stáhněte si soubory rozšíření PandoraList ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Creates a list of all the songs you listened to on Pandora. 

Coming Features:
-Copy button only copies table
-Static list header
-Cleaner GUI
-More...                    

Základní Informace o Rozšíření

Název PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
Oficiální URL https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
Popis This extension creates a playlist off of Pandora.
Velikost souboru 94.46 KB
Počet instalací 122
Aktuální Verze 0.0.1
Poslední Aktualizace 2013-08-11
Datum Vydání 2013-08-11
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PandoraList",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension creates a playlist off of Pandora.",
    "icons": {
        "16": "png\/icon16.png",
        "48": "png\/icon48.png",
        "128": "png\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/html\/index.html",
    "page_action": {
        "default_icon": "png\/icon19.png",
        "default_title": "PandoraList",
        "default_popup": "src\/html\/page_action.html"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "src\/js\/jquery-2.0.3.js",
                "src\/js\/pandora.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/js\/jquery-2.0.3.min.map"
    ]
}