Guitar Tabs for YouTube

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

¿Qué es Guitar Tabs for YouTube?

Guitar Tabs for YouTube es una extensión de Chrome desarrollada por https://www.music-theory.biz, y su función principal es "This extension will look into the current YouTube video description section and show available guitar tabs.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Guitar Tabs for YouTube

Descarga archivos de extensión Guitar Tabs for YouTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
URL Oficial https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Descripción This extension will look into the current YouTube video description section and show available guitar tabs.
Tamaño del Archivo 8.01 KB
Cantidad de Instalaciones 405
Versión Actual 1.0.0
Última Actualización 2017-06-03
Fecha de Publicación 2017-06-03
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador https://www.music-theory.biz
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}