Pandora History

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

ما هو Pandora History؟

Pandora History هو إضافة Chrome تم تطويرها بواسطة David McNavish، والميزة الرئيسية لها هي "Keep track of the Pandora songs that you have listened to.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Pandora History

قم بتنزيل ملفات الامتداد Pandora History بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم 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"
        }
    ]
}