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"
        }
    ]
}