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. 擴展基本資訊
| 名稱 | |
| ID | gocpionhjoififoliaelkfheedcafgin |
| 官方網址 | 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 |
| 電子郵箱 | [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
}
} | |