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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |