PandoraList
This extension creates a playlist off of Pandora.
什麼是PandoraList?
PandoraList是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension creates a playlist off of Pandora.”。
擴展截圖
下載PandoraList擴展crx文件
下載PandoraList擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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...
擴展基本資訊
名稱 | PandoraList |
ID | chhebofcjflcmkijapgaanihbliikfba |
官方網址 | https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba |
簡介 | This extension creates a playlist off of Pandora. |
檔案大小 | 94.46 KB |
安裝次數 | 122 |
目前版本 | 0.0.1 |
更新時間 | 2013-08-11 |
上架時間 | 2013-08-11 |
評分 | 3.67/5 共 3 次評分 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | 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" ] } |