Select Search

Select -> Search / Translate / Go to link

Select Searchとは何ですか?

Select Searchはxuqingfengによって開発されたChromeの拡張機能で、その主な機能は「Select -> Search / Translate / Go to link」です。

拡張機能のスクリーンショット

screenshot
screenshot

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                    

拡張機能の基本情報

名前 Select Search Select Search
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
Eメール [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
        }
    ]
}