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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}