Notifications for Radiotunes

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

Co je Notifications for Radiotunes?

Notifications for Radiotunes je rozšíření Chrome vyvinuté emoreno911, a jeho hlavní funkcí je „See notifications everytime radiotune's web player starts a new song“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Notifications for Radiotunes

Stáhněte si soubory rozšíření Notifications for Radiotunes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Notifications for Radiotunes Notifications for Radiotunes
ID niakkekcegpeeekiielpddigomfehdoa
Oficiální URL https://chrome.google.com/webstore/detail/notifications-for-radiotu/niakkekcegpeeekiielpddigomfehdoa
Popis See notifications everytime radiotune's web player starts a new song
Velikost souboru 120 KB
Počet instalací 21
Aktuální Verze 1.1.1
Poslední Aktualizace 2022-03-08
Datum Vydání 2017-06-17
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář emoreno911
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://emoreno911.github.io/Notitunes/
Podporované Jazyky 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"
            ]
        }
    ]
}