Tab Difficulty Predictor
This extension uses machine learing to predict the difficulty level of a song.
Tab Difficulty Predictor क्या है?
Tab Difficulty Predictor mlmoocarme द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension uses machine learing to predict the difficulty level of a song."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Difficulty Predictor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This browser extensions analyses the chord structure and patterns of guitar and ukulele tabs and provides a predicted difficulty rating. At the top of the webpages of your favourite tabs a small bar is added which indicates the difficulty level: novice, intermediate, or advanced. This extension is for players who want to quickly see if the song will be easy or difficult to play before wasting time deciding for themselves. The model has analysed tens of thousands of tabs in order to decide which chords, and which chord combinations result in songs that are easy or difficult to play.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hfkfmbkeajhmlgaogpkcncecdkgablfe |
आधिकारिक URL | https://chrome.google.com/webstore/detail/hfkfmbkeajhmlgaogpkcncecdkgablfe |
विवरण | This extension uses machine learing to predict the difficulty level of a song. |
फ़ाइल का आकार | 125 KB |
स्थापना संख्या | 65 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2017-04-15 |
प्रकाशन तिथि | 2017-04-15 |
डेवलपर | mlmoocarme |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.mattmoocar.me |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Difficulty Predictor", "description": "This extension uses machine learing to predict the difficulty level of a song.", "version": "0.0.1", "icons": { "16": "icons\/Guitar-icon-16.png", "48": "icons\/Guitar-icon-48.png", "128": "icons\/Guitar-icon-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/tabs.ultimate-guitar.com\/*" ], "js": [ "js\/jquery.min.js", "js\/ramda.min.js", "js\/contentScript.js" ] } ], "web_accessible_resources": [ "js\/jquery.min.js", "js\/ramda.min.js", "popup.js" ], "browser_action": { "default_icon": "icons\/Guitar-icon.png", "default_popup": "popup.html", "default_title": "Predict!" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/*", "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.7.2\/jquery.min.js", "https:\/\/s3.amazonaws.com\/chordml-weights\/*", "https:\/\/s3.amazonaws.com\/*", " |