Notifications for Radiotunes
See notifications everytime radiotune's web player starts a new song
ما هو Notifications for Radiotunes؟
Notifications for Radiotunes هو إضافة Chrome تم تطويرها بواسطة emoreno911، والميزة الرئيسية لها هي "See notifications everytime radiotune's web player starts a new song".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notifications for Radiotunes
قم بتنزيل ملفات الامتداد Notifications for Radiotunes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. معلومات أساسية عن التمديد
| الاسم | |
| 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"
]
}
]
} | |