Hotkeys for Search
Perform a search for selected text using keyboard shortcuts.
什么是Hotkeys for Search?
Hotkeys for Search是由Juuso H开发的Chrome扩展程序,该扩展的主要功能是“Perform a search for selected text using keyboard shortcuts.”。
扩展截图
下载Hotkeys for Search扩展crx文件
下载Hotkeys for Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
1. Select text on a web page using the mouse.
2. Press a keyboard shortcut to search for the selected text on your desired website.
Default shortcuts:
Alt+Q = Google
Alt+W = Wikipedia
Alt+A = Google Images
Alt+S = YouTube
The target search websites and keyboard shortcuts can be changed from the extension settings menu.
Source code: https://github.com/Juuso-h/hotkeys-for-search 扩展基本信息
| 名称 | |
| ID | gfmeadbjkfhkeklgaomifcaihbhpeido |
| 官方URL | https://chromewebstore.google.com/detail/hotkeys-for-search/gfmeadbjkfhkeklgaomifcaihbhpeido |
| 简介 | Perform a search for selected text using keyboard shortcuts. |
| 文件大小 | 22.13 KB |
| 安装次数 | 1,779 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2020-11-23 |
| 上架时间 | 2020-06-28 |
| 评分 | 4.45/5 共20次评分 |
| 开发者 | Juuso H |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Juuso-h/hotkeys-for-search |
| 支持的语言 | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_name__",
"version": "1.3.1",
"manifest_version": 2,
"description": "__MSG_description__",
"default_locale": "en",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon.png",
"128": "icon2.png"
},
"permissions": [
"commands",
"activeTab",
"storage"
],
"commands": {
"search1": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Website 1"
},
"search2": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Website 2"
},
"search3": {
"suggested_key": {
"default": "Alt+A"
},
"description": "Website 3"
},
"search4": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Website 4"
}
},
"browser_action": {
"default_popup": "options.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |