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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jabbersofficial และคุณลักษณะหลักของมันคือ "Redirects the default google videos tab to search youtube, instead of the default google videos search."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Video Search

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}