Notifications for Radiotunes

See notifications everytime radiotune's web player starts a new song

Что такое Notifications for Radiotunes?

Notifications for Radiotunes - это расширение Chrome, разработанное emoreno911, и его основная функция - "See notifications everytime radiotune's web player starts a new song".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Notifications for Radiotunes

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

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

                        Notitunes is a Google Chrome extension that will allow you to have desktop notifications every time a song changes while you are listening Radiotunes in your browser.

Update V1.1.0: Now the extension works with the new Radiotunes HTML5 player.

Note: I'm not related with Radiotunes, I made this extension just as a hobby.                    

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

Название Notifications for Radiotunes Notifications for Radiotunes
ID niakkekcegpeeekiielpddigomfehdoa
Официальный URL https://chrome.google.com/webstore/detail/notifications-for-radiotu/niakkekcegpeeekiielpddigomfehdoa
Описание See notifications everytime radiotune's web player starts a new song
Размер файла 120 KB
Количество установок 21
Текущая Версия 1.1.1
Последнее Обновление 2022-03-08
Дата публикации 2017-06-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик emoreno911
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://emoreno911.github.io/Notitunes/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifications for Radiotunes",
    "short_name": "Notitunes",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "See notifications everytime radiotune's web player starts a new song",
    "homepage_url": "https:\/\/emoreno911.github.io\/Notitunes",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "dist\/background.min.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Notifications for Radiotunes",
        "default_popup": "dist\/browser_action.html"
    },
    "permissions": [
        "notifications",
        "storage",
        "webRequest",
        "*:\/\/*.radiotunes.com\/*",
        "*:\/\/*.audioaddict.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.radiotunes.com\/*"
            ],
            "js": [
                "dist\/inject.js"
            ]
        }
    ]
}