Youtube Video Search
Redirects the default google videos tab to search youtube, instead of the default google videos search.
What is Youtube Video Search?
Youtube Video Search is a Chrome extension developed by jabbersofficial, and its main feature is "Redirects the default google videos tab to search youtube, instead of the default google videos search.".
Extension Screenshots
Download Youtube Video Search Extension CRX File
Download Youtube Video Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Youtube Video Search |
ID | igmgnochpgmbjdoacllndnokjkmbfkji |
Official URL | https://chromewebstore.google.com/detail/youtube-video-search/igmgnochpgmbjdoacllndnokjkmbfkji |
Description | Redirects the default google videos tab to search youtube, instead of the default google videos search. |
File Size | 46.97 KB |
Installation Count | 25 |
Current Version | 1.2 |
Last Updated | 2021-04-23 |
Publish Date | 2020-12-24 |
Developer | jabbersofficial |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |