Right Click Search Google in New Tab
Adds a right click menu option to search for the selected text on Google in a new tab
什么是Right Click Search Google in New Tab?
Right Click Search Google in New Tab是由RickBlyth.com开发的Chrome扩展程序,该扩展的主要功能是“Adds a right click menu option to search for the selected text on Google in a new tab”。
扩展截图
下载Right Click Search Google in New Tab扩展crx文件
下载Right Click Search Google in New Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds an option to search selected text on Google in a new tab (as per the old default behaviour when right clicking on selected text). 扩展基本信息
| 名称 | |
| ID | ppcfblmpdleopbnmicipapljlogolife |
| 官方URL | https://chromewebstore.google.com/detail/right-click-search-google/ppcfblmpdleopbnmicipapljlogolife |
| 简介 | Adds a right click menu option to search for the selected text on Google in a new tab |
| 文件大小 | 13.99 KB |
| 安装次数 | 83 |
| 当前版本 | 1.0 |
| 更新时间 | 2023-08-16 |
| 上架时间 | 2023-08-16 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | RickBlyth.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Right Click Search Google in New Tab",
"version": "1.0",
"description": "Adds a right click menu option to search for the selected text on Google in a new tab",
"permissions": [
"contextMenus",
"storage"
],
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"background": {
"service_worker": "serviceworker.js"
},
"options_ui": {
"page": "popup.html",
"open_in_tab": false
}
} | |