Guitar Tabs for YouTube

This extension will look into the current YouTube video description section and show available guitar tabs.

什麼是Guitar Tabs for YouTube?

Guitar Tabs for YouTube是由https://www.music-theory.biz開發的Chrome擴展程式,該擴展的主要功能是“This extension will look into the current YouTube video description section and show available guitar tabs.”。

擴展截圖

screenshot
screenshot

下載Guitar Tabs for YouTube擴展crx文件

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

擴展使用說明

                        The tabs should be written in this format: Am: 122000, in order to be extracted.                    

擴展基本資訊

名稱 Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
官方網址 https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
簡介 This extension will look into the current YouTube video description section and show available guitar tabs.
檔案大小 8.01 KB
安裝次數 405
目前版本 1.0.0
更新時間 2017-06-03
上架時間 2017-06-03
評分 3.00/5 共 4 次評分
開發者 https://www.music-theory.biz
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Guitar Tabs for YouTube",
    "description": "This extension will look into the current YouTube video description section and show available guitar tabs.",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}