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.”。
扩展截图
下载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 |
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" } } |