Search Center

Helps you search and highlight text on a web page. Supports keyboard shortcuts.

Search Center란 무엇입니까?

Search Center은(는) https://getsearchcenter.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you search and highlight text on a web page. Supports keyboard shortcuts."입니다.

확장 프로그램 스크린샷

screenshot

Search Center 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Search Center extension allows you to quickly search or highlight text on a web page. For more convenience, you can use hot keys.
To open the search window, just click on the extension icon in the upper-right corner of the browser, or use the keyboard shortcut: Alt + Shift + F.

Privacy Policy: https://getsearchcenter.com/privacy.html
Terms of Use: https://getsearchcenter.com/terms.html

By click on «Add to Chrome» button in the top right hand corner and installing Search Center extension, you are agreeing to install this extension, you are agreeing to our Privacy Policy, and you are agreeing to our Terms of Use.                    

확장 프로그램 기본 정보

이름 Search Center Search Center
ID bibjjhmgoinhccohlihdcidipacbkolh
공식 URL https://chromewebstore.google.com/detail/search-center/bibjjhmgoinhccohlihdcidipacbkolh
설명 Helps you search and highlight text on a web page. Supports keyboard shortcuts.
파일 크기 46.01 KB
설치 횟수 24
현재 버전 1.0.3
최근 업데이트 2021-09-26
출시 날짜 2021-06-02
개발자 https://getsearchcenter.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://getsearchcenter.com/privacy.html
지원되는 언어 en
manifest.json
{
    "manifest_version": 2,
    "name": "Search Center",
    "version": "1.0.3",
    "description": "Helps you search and highlight text on a web page. Supports keyboard shortcuts.",
    "icons": {
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "toolbar.html"
    ],
    "browser_action": [],
    "commands": {
        "toggle-toolbar": {
            "description": "Show\/hide toolbar",
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "highlight-text": {
            "description": "Highlight text",
            "suggested_key": {
                "default": "Alt+H"
            }
        },
        "find-next": {
            "description": "Find next",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "search-google": {
            "description": "Search in Google",
            "suggested_key": {
                "default": "Alt+G"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}