PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

PowerPack for Pandora란 무엇입니까?

PowerPack for Pandora은(는) Smarticals에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle activity with keyboard shortcuts on Pandora"입니다.

확장 프로그램 스크린샷

screenshot

PowerPack for Pandora 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 URL 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
}