Notifications for Radiotunes
See notifications everytime radiotune's web player starts a new song
Was ist Notifications for Radiotunes?
Notifications for Radiotunes ist eine Chrome-Erweiterung, die von emoreno911 entwickelt wurde, und ihr Hauptmerkmal ist "See notifications everytime radiotune's web player starts a new song".
Erweiterungsscreenshots
Notifications for Radiotunes-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notifications for Radiotunes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | niakkekcegpeeekiielpddigomfehdoa |
| Offizielle URL | https://chrome.google.com/webstore/detail/notifications-for-radiotu/niakkekcegpeeekiielpddigomfehdoa |
| Beschreibung | See notifications everytime radiotune's web player starts a new song |
| Dateigröße | 120 KB |
| Installationsanzahl | 21 |
| Aktuelle Version | 1.1.1 |
| Letztes Update | 2022-03-08 |
| Veröffentlichungsdatum | 2017-06-17 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | emoreno911 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://emoreno911.github.io/Notitunes/ |
| Unterstützte Sprachen | 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"
]
}
]
} | |