YouTabs

This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.

Qu'est-ce que YouTabs ?

YouTabs est une extension Chrome développée par Jiri Kuba, et sa fonction principale est "This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTabs

Téléchargez les fichiers d'extension YouTabs 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

                        This extension is basically search bar for searching guitar tabs on 911tabs.com.
But when you are on supported site extension will prefill song name for search.
Supported sites: 
https://www.youtube.com/
http://www.imdb.com/
http://www.csfd.cz/
Extension is free.
Source code: https://github.com/jiriKuba/YouTabs                    

Informations de Base sur l'Extension

Nom YouTabs YouTabs
ID fkkjjojgnfcnfdaiokeoffaakaaaimoa
URL Officiel https://chromewebstore.google.com/detail/youtabs/fkkjjojgnfcnfdaiokeoffaakaaaimoa
Description This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.
Taille du Fichier 10.3 KB
Nombre d'Installations 116
Version Actuelle 1.5
Dernière Mise à Jour 2017-09-09
Date de Publication 2017-09-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur Jiri Kuba
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://twitter.com/iPistha
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTabs",
    "short_name": "YouTabs",
    "author": "Jiri Kuba",
    "description": "This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.",
    "version": "1.5",
    "icons": {
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js",
                "youtube.content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.imdb.com\/*"
            ],
            "js": [
                "content.js",
                "imdb.content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.csfd.cz\/*"
            ],
            "js": [
                "content.js",
                "csfd.content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}