PandoraList
This extension creates a playlist off of Pandora.
Hvad er PandoraList?
PandoraList er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension creates a playlist off of Pandora.".
Udvidelsesskærmbilleder
Download PandoraList-udvidelses-CRX-fil
Download PandoraList-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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...
Grundlæggende oplysninger om udvidelsen
Navn | PandoraList |
ID | chhebofcjflcmkijapgaanihbliikfba |
Officiel URL | https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba |
Beskrivelse | This extension creates a playlist off of Pandora. |
Filstørrelse | 94.46 KB |
Antal Installationer | 122 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2013-08-11 |
Udgivelsesdato | 2013-08-11 |
Bedømmelse | 3.67/5 Samlet 3 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |