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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
        }
    ]
}