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
官方URL 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"
            ]
        }
    ]
}