Pandora Bar Button

Play/Pause Pandora from the Toolbar

什么是Pandora Bar Button?

Pandora Bar Button是由Middy开发的Chrome扩展程序,该扩展的主要功能是“Play/Pause Pandora from the Toolbar”。

扩展截图

screenshot

下载Pandora Bar Button扩展crx文件

下载Pandora Bar Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}