PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

ما هو PowerPack for Pandora؟

PowerPack for Pandora هو إضافة Chrome تم تطويرها بواسطة Smarticals، والميزة الرئيسية لها هي "Toggle activity with keyboard shortcuts on Pandora".

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

screenshot

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

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

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

                        Control Pandora music with simple keyboard shortcuts!

Ctrl-Shift-1 (Cmd for Mac) to Play/Pause the current song. If no tabs have Pandora open, it will open for you too.
Ctrl-Shift-2 (Cmd for Mac) to skip to the next song. If you press it twice (fast) it will change to another station.

Source code: https://github.com/ibeals/powerpackforpandora                    

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

الاسم PowerPack for Pandora PowerPack for Pandora
ID bglclhiilefknmpahmhjpbildepahbfa
عنوان URL الرسمي https://chromewebstore.google.com/detail/powerpack-for-pandora/bglclhiilefknmpahmhjpbildepahbfa
الوصف Toggle activity with keyboard shortcuts on Pandora
حجم الملف 29.32 KB
عدد التثبيتات 167
النسخة الحالية 0.1.0.5
آخر تحديث 2020-12-13
تاريخ النشر 2017-03-18
تقييم 4.75/5 مجموع تقييمات 4
المطور Smarticals
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ibeals/powerpackforpandora
عنوان صفحة سياسة الخصوصية https://faq.vauxapp.com/articles/1218-terms-conditions-and-privacy-policy-the-bottom-line
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PowerPack for Pandora",
    "short_name": "PowerPack",
    "description": "Toggle activity with keyboard shortcuts on Pandora",
    "version": "0.1.0.5",
    "icons": {
        "16": "128logo.png",
        "38": "128logo.png",
        "48": "128logo.png",
        "96": "128logo.png",
        "128": "128logo.png"
    },
    "permissions": [
        "notifications",
        "tabs",
        "http:\/\/www.pandora.com\/*",
        "http:\/\/pandora.com\/*",
        "https:\/\/www.pandora.com\/*",
        "https:\/\/pandora.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "http:\/\/pandora.com\/*",
                "https:\/\/pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "js": [
                "pandora_play_toggle.js"
            ]
        }
    ],
    "commands": {
        "toggle-pandora-play": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Toggle Pandora Play and Pause",
            "global": true
        },
        "toggle-pandora-skip": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Toggle Pandora Skip",
            "global": true
        }
    },
    "manifest_version": 2
}