Tab Difficulty Predictor

This extension uses machine learing to predict the difficulty level of a song.

什麼是Tab Difficulty Predictor?

Tab Difficulty Predictor是由mlmoocarme開發的Chrome擴展程式,該擴展的主要功能是“This extension uses machine learing to predict the difficulty level of a song.”。

擴展截圖

screenshot

下載Tab Difficulty Predictor擴展crx文件

下載Tab Difficulty Predictor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Tab Difficulty Predictor Tab Difficulty Predictor
ID hfkfmbkeajhmlgaogpkcncecdkgablfe
官方網址 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\/*",
        ""
    ]
}