Guitar Tabs for YouTube

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

Co to jest Guitar Tabs for YouTube?

Guitar Tabs for YouTube to rozszerzenie Chrome opracowane przez https://www.music-theory.biz, a jego główną funkcją jest „This extension will look into the current YouTube video description section and show available guitar tabs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Guitar Tabs for YouTube

Pobierz pliki rozszerzeń Guitar Tabs for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
Oficjalny URL https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Opis This extension will look into the current YouTube video description section and show available guitar tabs.
Rozmiar pliku 8.01 KB
Liczba instalacji 405
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-06-03
Data Publikacji 2017-06-03
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper https://www.music-theory.biz
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}