Search Tool

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

Co to jest Search Tool?

Search Tool to rozszerzenie Chrome opracowane przez Robin Lin, a jego główną funkcją jest „Quickly switch between customized search engines; Add a custom search engine in the right-click menu.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Search Tool

Pobierz pliki rozszerzeń Search Tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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搜索"选中的文本"』                    

Podstawowe informacje o rozszerzeniu

Nazwa Search Tool Search Tool
ID fjjkihnjlinkjpfeooipegebcakeocef
Oficjalny URL https://chromewebstore.google.com/detail/search-tool/fjjkihnjlinkjpfeooipegebcakeocef
Opis Quickly switch between customized search engines; Add a custom search engine in the right-click menu.
Rozmiar pliku 370 KB
Liczba instalacji 569
Aktualna Wersja 1.2.5
Ostatnia Aktualizacja 2023-05-25
Data Publikacji 2021-05-30
Ocena 4.73/5 Łącznie 15 Oceny
Deweloper Robin Lin
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}