Google Result Highlighter

Highlight google search results from trusted websites.

Google Result Highlighter란 무엇입니까?

Google Result Highlighter은(는) harunurhan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight google search results from trusted websites."입니다.

확장 프로그램 스크린샷

screenshot

Google Result Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Highlight google search results from trusted websites.

You need to the website which you trust like stackoverflow.com or en.wikipedia.org and select a color for each of them. After that, the extension will highlight results of your google search from that web sites using the colors which you chose.

It is an open source project: https://github.com/harunurhan/google-result-highlighter                    

확장 프로그램 기본 정보

이름 Google Result Highlighter Google Result Highlighter
ID kimgfbhinaigoahlilmenjgbkcdfbeic
공식 URL https://chromewebstore.google.com/detail/google-result-highlighter/kimgfbhinaigoahlilmenjgbkcdfbeic
설명 Highlight google search results from trusted websites.
파일 크기 1.07 MB
설치 횟수 190
현재 버전 0.6
최근 업데이트 2021-01-02
출시 날짜 2018-03-03
평점 3.67/5 총 3 개의 평점
개발자 harunurhan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Result Highlighter",
    "description": "Highlight google search results from trusted websites.",
    "version": "0.6",
    "permissions": [
        "*:\/\/www.google.co.uk\/*",
        "*:\/\/www.google.com.tr\/*",
        "*:\/\/www.google.com\/*",
        "*:\/\/www.google.co.in\/*",
        "*:\/\/www.google.com.my\/*",
        "*:\/\/www.google.co.id\/*",
        "*:\/\/www.google.ca\/*",
        "*:\/\/www.google.com.br\/*",
        "*:\/\/www.google.fr\/*",
        "*:\/\/www.google.de\/*",
        "*:\/\/www.google.es\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.co.uk\/*",
                "*:\/\/www.google.com.tr\/*",
                "*:\/\/www.google.com\/*",
                "*:\/\/www.google.co.in\/*",
                "*:\/\/www.google.com.my\/*",
                "*:\/\/www.google.co.id\/*",
                "*:\/\/www.google.ca\/*",
                "*:\/\/www.google.com.br\/*",
                "*:\/\/www.google.fr\/*",
                "*:\/\/www.google.de\/*",
                "*:\/\/www.google.es\/*"
            ],
            "js": [
                "highlight.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2,
    "options_page": "config.html"
}