PowerPack for Pandora
Toggle activity with keyboard shortcuts on Pandora
PowerPack for Pandora क्या है?
PowerPack for Pandora Smarticals द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle activity with keyboard shortcuts on Pandora"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PowerPack for Pandora एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |