Guitar Tabs for YouTube

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

O que é Guitar Tabs for YouTube?

Guitar Tabs for YouTube é uma extensão do Chrome desenvolvida por https://www.music-theory.biz, e sua principal característica é "This extension will look into the current YouTube video description section and show available guitar tabs.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Guitar Tabs for YouTube

Baixe arquivos de extensão Guitar Tabs for YouTube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
URL Oficial https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Descrição This extension will look into the current YouTube video description section and show available guitar tabs.
Tamanho do Arquivo 8.01 KB
Contagem de Instalações 405
Versão Atual 1.0.0
Última Atualização 2017-06-03
Data de Publicação 2017-06-03
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor https://www.music-theory.biz
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}