YouTabs

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

Wat is YouTabs?

YouTabs is een Chrome-extensie ontwikkeld door Jiri Kuba, en de belangrijkste functie is "This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTabs

Download YouTabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouTabs YouTabs
ID fkkjjojgnfcnfdaiokeoffaakaaaimoa
Officiële URL https://chromewebstore.google.com/detail/youtabs/fkkjjojgnfcnfdaiokeoffaakaaaimoa
Beschrijving This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.
Bestandsgrootte 10.3 KB
Aantal Installaties 116
Huidige Versie 1.5
Laatst Bijgewerkt 2017-09-09
Publicatiedatum 2017-09-09
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Jiri Kuba
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://twitter.com/iPistha
Ondersteunde Talen 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
    }
}