Search Tool

Quickly switch between customized search engines; Add a custom search engine in the right-click menu.

什麼是Search Tool?

Search Tool是由Robin Lin開發的Chrome擴展程式,該擴展的主要功能是“Quickly switch between customized search engines; Add a custom search engine in the right-click menu.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Search Tool擴展crx文件

下載Search Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        It supports configuring any search engine, similar to the search engine configuration in chrome settings, such as Baidu search, Bing search, JD search, Douban search, headline search, etc.
After configuration, support:

1. shortcut keys switch between search engines. 
For example, on the Baidu search page, press the shortcut key (configurable) to quickly switch to Google search without reentering the search term, and then press the shortcut key to quickly switch to Bing search.

2. click the plug-in pop-up menu in the upper right corner (shortcut keys can also be configured) to quickly switch to the specified search engine. 
If it is on the search engine page, it will automatically bring the search term and jump to the specified search result page; Otherwise, directly jump to the specified search results page.

3. support the configuration of search engines in the right-click menu. 
If only one search engine is configured, it is in the top-level menu, or multiple search engines can be configured. After selecting a text, right-click it, and "search for" selected text "using XX" will appear in the right-click menu

功能:
支持配置任意搜索引擎,类似chrome设置里面的搜索引擎配置,比如百度搜索、必应搜索、京东搜索、豆瓣搜索、头条搜索等等。
配置好后,支持:
1. 快捷键在搜索引擎间切换。比如在百度搜索页面,按下快捷键(可自己配置)快速切换为Google搜索,而无需重新输入检索词,再按下快捷键,快速切换为必应搜索。

2. 支持右上角点击插件弹出菜单(也可以配置快捷键),快速切换到指定搜索引擎。如果在搜索引擎页面,会自动带上检索词跳转到指定的搜索结果页;否则直接跳转到指定的搜索结果页面。

3. 支持配置右键菜单中的搜索引擎,如果只配置一个,则处于顶级菜单,也可以配置多个。选中文本后,点击右键,则右键菜单中出现『使用xx搜索"选中的文本"』                    

擴展基本資訊

名稱 Search Tool Search Tool
ID fjjkihnjlinkjpfeooipegebcakeocef
官方網址 https://chromewebstore.google.com/detail/search-tool/fjjkihnjlinkjpfeooipegebcakeocef
簡介 Quickly switch between customized search engines; Add a custom search engine in the right-click menu.
檔案大小 370 KB
安裝次數 569
目前版本 1.2.5
更新時間 2023-05-25
上架時間 2021-05-30
評分 4.73/5 共 15 次評分
開發者 Robin Lin
電子郵箱 [email protected]
付費類型 free
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "description": "__MSG_extDescription__",
    "homepage_url": "https:\/\/github.com\/Lyndon1994\/EfficientOfficeTools\/tree\/main\/chrome\/SearchTool",
    "icons": {
        "16": "assets\/logo.png",
        "32": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "history",
        "bookmarks"
    ],
    "short_name": "__MSG_extName__",
    "version": "1.2.5",
    "commands": {
        "toggle-search": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "MacCtrl+S"
            },
            "description": "Toggle Search Engine"
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "Command+K"
            },
            "description": "Start the search"
        }
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*",
                "\/assets\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}