YouTabs

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

What is YouTabs?

YouTabs is a Chrome extension developed by Jiri Kuba, and its main feature is "This extension is search bar for searching guitar tabs on 911tabs. On supported sites extension will prefill song name for search.".

Extension Screenshots

screenshot

Download YouTabs Extension CRX File

Download YouTabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name YouTabs YouTabs
ID fkkjjojgnfcnfdaiokeoffaakaaaimoa
Official URL 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.
File Size 10.3 KB
Installation Count 116
Current Version 1.5
Last Updated 2017-09-09
Publish Date 2017-09-09
Rating 5.00/5 Total 1 Ratings
Developer Jiri Kuba
Email [email protected]
Payment Type free
Help Page URL https://twitter.com/iPistha
Supported Languages 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
    }
}