Guitar Tabs for YouTube

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

Vad är Guitar Tabs for YouTube?

Guitar Tabs for YouTube är en Chrome-tillägg utvecklad av https://www.music-theory.biz, och dess huvudfunktion är "This extension will look into the current YouTube video description section and show available guitar tabs.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Guitar Tabs for YouTube-förlängningens CRX-fil

Ladda ner Guitar Tabs for YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
Officiell webbadress https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Beskrivning This extension will look into the current YouTube video description section and show available guitar tabs.
Filstorlek 8.01 KB
Antal Installationer 405
Aktuell Version 1.0.0
Senast Uppdaterad 2017-06-03
Publiceringsdatum 2017-06-03
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare https://www.music-theory.biz
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}