Pandora Player

A more integrated way of enjoying pandora.

Что такое Pandora Player?

Pandora Player - это расширение Chrome, разработанное WebMech, и его основная функция - "A more integrated way of enjoying pandora.".

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

screenshot

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

Скачайте файлы расширений Pandora Player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Pandora Player is a neat little widget that lets you control and listen to Pandora from your browser. It includes everything you need to listen to and enjoy Pandora without the need to have the yet another extra tab open.

Features: 
- Play, Pause, Like, Skip your Pandora songs.
- Switch Playlists                    

Основная информация о расширении

Название Pandora Player Pandora Player
ID pdkmfpaepcjiffojdgagnbdhebkojmib
Официальный URL https://chrome.google.com/webstore/detail/pandora-player/pdkmfpaepcjiffojdgagnbdhebkojmib
Описание A more integrated way of enjoying pandora.
Размер файла 173 KB
Количество установок 492
Текущая Версия 1.2.3
Последнее Обновление 2014-08-03
Дата публикации 2014-08-03
Рейтинг 3.00/5 Всего 3 оценок
Разработчик WebMech
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pandora Player",
    "description": "A more integrated way of enjoying pandora.",
    "version": "1.2.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*.pandora.com\/*",
        "webNavigation",
        "tabs",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/pandora.com; object-src 'self' https:\/\/pandora.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pandora.com\/",
                "*:\/\/*.pandora.com\/account\/sign-in",
                "*:\/\/*.pandora.com\/station\/play\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/app\/pandora.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "index.html"
    }
}