Notifications for Radiotunes

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

O que é Notifications for Radiotunes?

Notifications for Radiotunes é uma extensão do Chrome desenvolvida por emoreno911, e sua principal característica é "See notifications everytime radiotune's web player starts a new song".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Notifications for Radiotunes

Baixe arquivos de extensão Notifications for Radiotunes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Notifications for Radiotunes Notifications for Radiotunes
ID niakkekcegpeeekiielpddigomfehdoa
URL Oficial https://chrome.google.com/webstore/detail/notifications-for-radiotu/niakkekcegpeeekiielpddigomfehdoa
Descrição See notifications everytime radiotune's web player starts a new song
Tamanho do Arquivo 120 KB
Contagem de Instalações 21
Versão Atual 1.1.1
Última Atualização 2022-03-08
Data de Publicação 2017-06-17
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor emoreno911
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://emoreno911.github.io/Notitunes/
Idiomas Suportados 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"
            ]
        }
    ]
}