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 |
官方URL | 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" ] } |