Handy Search
Advanced browsing on the internet.
什麼是Handy Search?
Handy Search是由Roman Sukhorukov開發的Chrome擴展程式,該擴展的主要功能是“Advanced browsing on the internet.”。
擴展截圖
下載Handy Search擴展crx文件
下載Handy Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Have you ever googled? I bet you do! Or searched something navigating through the links on a page, eventually finding yourself with a number of tabs opened, which are not needed anymore after you've found that you were looking for. It would be nice to indicate to the browser that the tabs could be closed, instead of closing them by hand. This extension provides you with such a feature through a handy toolbar at the bottom of the page which lets you close connected tabs and switch between them in one click. You're also offered a way to navigate to any suggested page from the search engine results page in one tab without switching back and forth. One click navigation! Features: - The Suggests button works in two modes: as a button on short click and as a select on holding left mouse button. Middle mouse button click opens a page in a new tab. - For a faster navigation consider using hot keys: Ctrl + Shift + F – Found Ctrl + Shift + K – The Next page Ctrl + M – Minimize/restore the panel For more information or in case of any suggestions/issues visit: https://github.com/vandy/handy-search
擴展基本資訊
名稱 | Handy Search |
ID | clhaemfeepnllbbjfkkhlcgbfgnjilnl |
官方網址 | https://chromewebstore.google.com/detail/handy-search/clhaemfeepnllbbjfkkhlcgbfgnjilnl |
簡介 | Advanced browsing on the internet. |
檔案大小 | 42.79 KB |
安裝次數 | 109 |
目前版本 | 1.2.0 |
更新時間 | 2021-04-04 |
上架時間 | 2020-11-12 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Roman Sukhorukov |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/vandy/handy-search |
說明頁面URL | https://github.com/vandy/handy-search/issues |
支援的語言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "author": "__MSG_extAuthor__", "version": "1.2.0", "default_locale": "en", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "ftp:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js" ], "css": [ "content.css" ] } ], "icons": { "16": "\/icons\/logo16.png", "48": "\/icons\/logo48.png", "128": "\/icons\/logo128.png" }, "web_accessible_resources": [ "assets\/*" ], "commands": { "toggle-notification": { "suggested_key": { "default": "Ctrl+M" }, "description": "Minimize\/restore notification" }, "accept-notification": { "suggested_key": { "default": "Ctrl+Shift+F" }, "description": "Found" }, "next-notification": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Go to next Suggested page" } }, "permissions": [ "tabs", "webRequest", "webNavigation", "*:\/\/*\/*", "ftp:\/\/*\/*" ] } |