Chromesthesia
Find out what song is playing in a tab
Τι είναι το Chromesthesia;
Το Chromesthesia είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mattias Wadman, και η κύρια λειτουργία του είναι "Find out what song is playing in a tab".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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
}
} | |