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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
]
}
]
} | |