Tab Difficulty Predictor

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

Tab Difficulty Predictorคืออะไร?

Tab Difficulty Predictor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mlmoocarme และคุณลักษณะหลักของมันคือ "This extension uses machine learing to predict the difficulty level of a song."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Difficulty Predictor

ดาวน์โหลดไฟล์ส่วนขยาย 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
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\/*",
        ""
    ]
}