Youtube Video Search

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

什麼是Youtube Video Search?

Youtube Video Search是由jabbersofficial開發的Chrome擴展程式,該擴展的主要功能是“Redirects the default google videos tab to search youtube, instead of the default google videos search.”。

擴展截圖

screenshot

下載Youtube Video Search擴展crx文件

下載Youtube Video Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Youtube Video Search Youtube Video Search
ID igmgnochpgmbjdoacllndnokjkmbfkji
官方網址 https://chromewebstore.google.com/detail/youtube-video-search/igmgnochpgmbjdoacllndnokjkmbfkji
簡介 Redirects the default google videos tab to search youtube, instead of the default google videos search.
檔案大小 46.97 KB
安裝次數 25
目前版本 1.2
更新時間 2021-04-23
上架時間 2020-12-24
開發者 jabbersofficial
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}