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
擴展基本資訊
名稱 | Hotkeys for Search |
ID | gfmeadbjkfhkeklgaomifcaihbhpeido |
官方網址 | 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 } } |