Select Search
Select -> Search / Translate / Go to link
什么是Select Search?
Select Search是由xuqingfeng开发的Chrome扩展程序,该扩展的主要功能是“Select -> Search / Translate / Go to link”。
扩展截图
下载Select Search扩展crx文件
下载Select Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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                        扩展基本信息
| 名称 |   |  
| ID | hlnpaciomjjnpmbjedfmlnkhogngmleh | 
| 官方URL | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh | 
| 简介 | Select -> Search / Translate / Go to link | 
| 文件大小 | 2.21 MB | 
| 安装次数 | 13 | 
| 当前版本 | 3.2.0 | 
| 更新时间 | 2023-11-01 | 
| 上架时间 | 2016-06-22 | 
| 评分 | 5.00/5 共1次评分 | 
| 开发者 | xuqingfeng | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/xuqingfeng/Select-Search | 
| 支持的语言 | 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
        }
    ]
}  |  |