PandoraList
This extension creates a playlist off of Pandora.
Was ist PandoraList?
PandoraList ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension creates a playlist off of Pandora.".
Erweiterungsscreenshots
PandoraList-Erweiterungs-CRX-Datei herunterladen
Laden Sie PandoraList-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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...
Grundlegende Informationen zur Erweiterung
Name | PandoraList |
ID | chhebofcjflcmkijapgaanihbliikfba |
Offizielle URL | https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba |
Beschreibung | This extension creates a playlist off of Pandora. |
Dateigröße | 94.46 KB |
Installationsanzahl | 122 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2013-08-11 |
Veröffentlichungsdatum | 2013-08-11 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |