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 |
Eメール | [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" ] } ] } |