Youtube Video Search

Redirects the default google videos tab to search youtube, instead of the default google videos search.

Co je Youtube Video Search?

Youtube Video Search je rozšíření Chrome vyvinuté jabbersofficial, a jeho hlavní funkcí je „Redirects the default google videos tab to search youtube, instead of the default google videos search.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Youtube Video Search

Stáhněte si soubory rozšíření Youtube Video Search ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        When browsing google, it is sometimes more convenient to have the "videos" tab to redirect straight to youtube. This extension aims to solve this by redirecting the videos tab straight to youtube.                    

Základní Informace o Rozšíření

Název Youtube Video Search Youtube Video Search
ID igmgnochpgmbjdoacllndnokjkmbfkji
Oficiální URL https://chromewebstore.google.com/detail/youtube-video-search/igmgnochpgmbjdoacllndnokjkmbfkji
Popis Redirects the default google videos tab to search youtube, instead of the default google videos search.
Velikost souboru 46.97 KB
Počet instalací 25
Aktuální Verze 1.2
Poslední Aktualizace 2021-04-23
Datum Vydání 2020-12-24
Vývojář jabbersofficial
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Search",
    "version": "1.2",
    "description": "Redirects the default google videos tab to search youtube, instead of the default google videos search.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "youtubevideosearch.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    }
}