Guitar Tabs for YouTube

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

Qu'est-ce que Guitar Tabs for YouTube ?

Guitar Tabs for YouTube est une extension Chrome développée par https://www.music-theory.biz, et sa fonction principale est "This extension will look into the current YouTube video description section and show available guitar tabs.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Guitar Tabs for YouTube

Téléchargez les fichiers d'extension Guitar Tabs for YouTube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
URL Officiel https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
Description This extension will look into the current YouTube video description section and show available guitar tabs.
Taille du Fichier 8.01 KB
Nombre d'Installations 405
Version Actuelle 1.0.0
Dernière Mise à Jour 2017-06-03
Date de Publication 2017-06-03
Évaluation 3.00/5 Total 4 Évaluations
Développeur https://www.music-theory.biz
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}