Chromesthesia
Find out what song is playing in a tab
Chromesthesia क्या है?
Chromesthesia Mattias Wadman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find out what song is playing in a tab"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chromesthesia एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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 } } |