Pandora Bar Button

Play/Pause Pandora from the Toolbar

Что такое Pandora Bar Button?

Pandora Bar Button - это расширение Chrome, разработанное Middy, и его основная функция - "Play/Pause Pandora from the Toolbar".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pandora Bar Button

Скачайте файлы расширений 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"
}