Select Search

Select -> Search / Translate / Go to link

What is Select Search?

Select Search is a Chrome extension developed by xuqingfeng, and its main feature is "Select -> Search / Translate / Go to link".

Extension Screenshots

screenshot
screenshot

Download Select Search Extension CRX File

Download Select Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        In macOS / Windows:

⌘/ + G - search selected text with different search engine( Google, Bing, Sogou ... )

⌘/ + E - translate selected text

⌘/ + B - jump to selected link

Note: shortcuts are customizable in extension's Options page                    

Extension Basic Information

Name Select Search Select Search
ID hlnpaciomjjnpmbjedfmlnkhogngmleh
Official URL https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh
Description Select -> Search / Translate / Go to link
File Size 2.21 MB
Installation Count 13
Current Version 3.2.0
Last Updated 2023-11-01
Publish Date 2016-06-22
Rating 5.00/5 Total 1 Ratings
Developer xuqingfeng
Email [email protected]
Payment Type free
Extension Website https://github.com/xuqingfeng/Select-Search
Supported Languages en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Select Search",
    "version": "3.2.0",
    "description": "Select -> Search \/ Translate \/ Go to link",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}