Pandora Bar Button

Play/Pause Pandora from the Toolbar

ما هو Pandora Bar Button؟

Pandora Bar Button هو إضافة Chrome تم تطويرها بواسطة Middy، والميزة الرئيسية لها هي "Play/Pause Pandora from the Toolbar".

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

screenshot

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

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

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

                        Adds a minimalist play/pause button to the Chrome toolbar. This is a minimalist extension.

It will:

* Launch Pandora if there is not already a tab present
* Play or Pause Pandora when clicked
* Update its visual appearance to reflect Pandora's state (playing or paused.)

It will not:

* Download music
* Skip/Thumb-up/Thumb-down tracks
* Use more resources than necessary
* Require more permissions than necessary

This app was based on the extension "Play / Pause Pandora Tab" by pedroestrada.me.

Available on Github at https://github.com/nettlep/chrome-ext-PlayPausePandora                    

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

الاسم Pandora Bar Button Pandora Bar Button
ID clnpfgoalebpfdojhhmoiapafcgiaajo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/pandora-bar-button/clnpfgoalebpfdojhhmoiapafcgiaajo
الوصف Play/Pause Pandora from the Toolbar
حجم الملف 21.33 KB
عدد التثبيتات 200
النسخة الحالية 1.0.0
آخر تحديث 2017-02-14
تاريخ النشر 2017-02-14
تقييم 5.00/5 مجموع تقييمات 1
المطور Middy
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "action-play.png"
    },
    "content_scripts": [
        {
            "js": [
                "pppandora.js"
            ],
            "matches": [
                "*:\/\/*.pandora.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Play\/Pause Pandora from the Toolbar",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Pandora Bar Button",
    "permissions": [
        "tabs",
        "webNavigation",
        "http:\/\/*.pandora.com\/",
        "https:\/\/*.pandora.com\/"
    ],
    "version": "1.0.0"
}