Chromesthesia

Find out what song is playing in a tab

Chromesthesiaคืออะไร?

Chromesthesia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mattias Wadman และคุณลักษณะหลักของมันคือ "Find out what song is playing in a tab"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chromesthesia

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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
    }
}