Pandora History Saver

Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.

Что такое Pandora History Saver?

Pandora History Saver - это расширение Chrome, разработанное Patrick Griffith, и его основная функция - "Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.".

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

screenshot

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

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

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

                        Records your history across all stations. 

It labels the songs you skipped.

Click on the song name to hear it on Youtube. 

Allows you to remove items from your history and then export the history to a text file.                    

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

Название Pandora History Saver Pandora History Saver
ID honopjhbilnaafihhlbhflgecnmegeae
Официальный URL https://chromewebstore.google.com/detail/pandora-history-saver/honopjhbilnaafihhlbhflgecnmegeae
Описание Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.
Размер файла 77.75 KB
Количество установок 105
Текущая Версия 1.0.2
Последнее Обновление 2015-11-20
Дата публикации 2015-11-20
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Patrick Griffith
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pandora History Saver",
    "description": "Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "model.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "model.js",
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "browser_action": {
        "default_title": "Pandora History Saver",
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}