Chromesthesia
Find out what song is playing in a tab
Chromesthesiaとは何ですか?
ChromesthesiaはMattias Wadmanによって開発されたChromeの拡張機能で、その主な機能は「Find out what song is playing in a tab」です。
拡張機能のスクリーンショット
Chromesthesia拡張機能のCRXファイルをダウンロード
Chromesthesia拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Captures the audio playing in a tab and sends it to audio recognition services. Currently these services are supported: audD - No account required. 10 requests free per day. ACRCloud - Requires an account but there is a free plan. AudioTag - Requires an account but there is a free plan.
拡張機能の基本情報
名前 | Chromesthesia |
ID | gocpionhjoififoliaelkfheedcafgin |
公式URL | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
説明 | Find out what song is playing in a tab |
ファイルサイズ | 71.58 KB |
インストール数 | 4,255 |
現在のバージョン | 0.15 |
最終更新日 | 2021-02-09 |
公開日 | 2019-11-03 |
評価 | 4.03/5 合計 29 レビュー |
開発者 | Mattias Wadman |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/wader/chromesthesia |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chromesthesia", "description": "Find out what song is playing in a tab", "version": "0.15", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "homepage_url": "https:\/\/github.com\/wader\/chromesthesia", "permissions": [ "storage", "tabCapture", "http:\/\/*.acrcloud.com\/", "https:\/\/*.acrcloud.com\/", "https:\/\/api.audd.io\/", "https:\/\/audiotag.info\/" ], "background": { "scripts": [ "defaultOptions.js", "arraySet.js", "state.js", "dom.js", "libshine.js", "captureAudio.js", "promiseUtils.js", "acrCloud.js", "audD.js", "audioTag.js", "dummyMatch.js", "matchers.js", "background.js" ] }, "page_action": { "default_popup": "pageAction.html", "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" } }, "options_ui": { "page": "options.html", "chrome_style": true } } |