Pandora Bar Button
Play/Pause Pandora from the Toolbar
Was ist Pandora Bar Button?
Pandora Bar Button ist eine Chrome-Erweiterung, die von Middy entwickelt wurde, und ihr Hauptmerkmal ist "Play/Pause Pandora from the Toolbar".
Erweiterungsscreenshots
Pandora Bar Button-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pandora Bar Button-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | clnpfgoalebpfdojhhmoiapafcgiaajo |
Offizielle URL | https://chrome.google.com/webstore/detail/pandora-bar-button/clnpfgoalebpfdojhhmoiapafcgiaajo |
Beschreibung | Play/Pause Pandora from the Toolbar |
Dateigröße | 21.33 KB |
Installationsanzahl | 200 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2017-02-14 |
Veröffentlichungsdatum | 2017-02-14 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Middy |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |