Pandora History

Keep track of the Pandora songs that you have listened to.

什么是Pandora History?

Pandora History是由David McNavish开发的Chrome扩展程序,该扩展的主要功能是“Keep track of the Pandora songs that you have listened to.”。

扩展截图

screenshot

下载Pandora History扩展crx文件

下载Pandora History扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Pandora History Pandora History
ID cbodjnhecijlkbaimepgidkppmgankei
官方URL https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei
简介 Keep track of the Pandora songs that you have listened to.
文件大小 23.01 KB
安装次数 283
当前版本 1.2
更新时间 2013-02-19
上架时间 2013-02-19
评分 4.60/5 共5次评分
开发者 David McNavish
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pandora History",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Keep track of the Pandora songs that you have listened to.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "js": [
                "songProcessor.js"
            ],
            "run_at": "document_end"
        }
    ]
}