PandoraList
This extension creates a playlist off of Pandora.
Co to jest PandoraList?
PandoraList to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension creates a playlist off of Pandora.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia PandoraList
Pobierz pliki rozszerzeń PandoraList w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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...
Podstawowe informacje o rozszerzeniu
Nazwa | PandoraList |
ID | chhebofcjflcmkijapgaanihbliikfba |
Oficjalny URL | https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba |
Opis | This extension creates a playlist off of Pandora. |
Rozmiar pliku | 94.46 KB |
Liczba instalacji | 122 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2013-08-11 |
Data Publikacji | 2013-08-11 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |