Youtube Video Search

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

Was ist Youtube Video Search?

Youtube Video Search ist eine Chrome-Erweiterung, die von jabbersofficial entwickelt wurde, und ihr Hauptmerkmal ist "Redirects the default google videos tab to search youtube, instead of the default google videos search.".

Erweiterungsscreenshots

screenshot

Youtube Video Search-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Video Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Video Search Youtube Video Search
ID igmgnochpgmbjdoacllndnokjkmbfkji
Offizielle URL https://chromewebstore.google.com/detail/youtube-video-search/igmgnochpgmbjdoacllndnokjkmbfkji
Beschreibung Redirects the default google videos tab to search youtube, instead of the default google videos search.
Dateigröße 46.97 KB
Installationsanzahl 25
Aktuelle Version 1.2
Letztes Update 2021-04-23
Veröffentlichungsdatum 2020-12-24
Entwickler jabbersofficial
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}