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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 Tab Difficulty Predictor Tab Difficulty Predictor
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\/*",
        ""
    ]
}