Search Tool

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

Search Tool là gì?

Search Tool là một tiện ích mở rộng Chrome được phát triển bởi Robin Lin, và tính năng chính của nó là "Quickly switch between customized search engines; Add a custom search engine in the right-click menu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Tool

Tải xuống các tệp mở rộng Search Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Tool Search Tool
ID fjjkihnjlinkjpfeooipegebcakeocef
URL Chính Thức https://chromewebstore.google.com/detail/search-tool/fjjkihnjlinkjpfeooipegebcakeocef
Mô tả Quickly switch between customized search engines; Add a custom search engine in the right-click menu.
Kích Thước Tệp 370 KB
Số Lần Cài Đặt 569
Phiên Bản Hiện Tại 1.2.5
Cập Nhật Lần Cuối 2023-05-25
Ngày Phát Hành 2021-05-30
Đánh Giá 4.73/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Robin Lin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}