Notifications for Radiotunes

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

Notifications for Radiotunes क्या है?

Notifications for Radiotunes emoreno911 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See notifications everytime radiotune's web player starts a new song"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notifications for Radiotunes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}