Notifications for Radiotunes

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

什麼是Notifications for Radiotunes?

Notifications for Radiotunes是由emoreno911開發的Chrome擴展程式,該擴展的主要功能是“See notifications everytime radiotune's web player starts a new song”。

擴展截圖

screenshot
screenshot
screenshot

下載Notifications for Radiotunes擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}