Guitar Tabs for YouTube

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

Was ist Guitar Tabs for YouTube?

Guitar Tabs for YouTube ist eine Chrome-Erweiterung, die von https://www.music-theory.biz entwickelt wurde, und ihr Hauptmerkmal ist "This extension will look into the current YouTube video description section and show available guitar tabs.".

Erweiterungsscreenshots

screenshot
screenshot

Guitar Tabs for YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Guitar Tabs for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
Offizielle URL https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Beschreibung This extension will look into the current YouTube video description section and show available guitar tabs.
Dateigröße 8.01 KB
Installationsanzahl 405
Aktuelle Version 1.0.0
Letztes Update 2017-06-03
Veröffentlichungsdatum 2017-06-03
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler https://www.music-theory.biz
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}