Tab Difficulty Predictor
This extension uses machine learing to predict the difficulty level of a song.
O que é Tab Difficulty Predictor?
Tab Difficulty Predictor é uma extensão do Chrome desenvolvida por mlmoocarme, e sua principal característica é "This extension uses machine learing to predict the difficulty level of a song.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Difficulty Predictor
Baixe arquivos de extensão Tab Difficulty Predictor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | hfkfmbkeajhmlgaogpkcncecdkgablfe |
URL Oficial | https://chrome.google.com/webstore/detail/hfkfmbkeajhmlgaogpkcncecdkgablfe |
Descrição | This extension uses machine learing to predict the difficulty level of a song. |
Tamanho do Arquivo | 125 KB |
Contagem de Instalações | 65 |
Versão Atual | 0.0.1 |
Última Atualização | 2017-04-15 |
Data de Publicação | 2017-04-15 |
Desenvolvedor | mlmoocarme |
Tipo de Pagamento | free |
Site da Extensão | http://www.mattmoocar.me |
Idiomas Suportados | 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\/*", " |