Highlight Keywords

Highlight keywords on webpage that you visited after searching for a keyword on a search engine.

Highlight Keywords란 무엇입니까?

Highlight Keywords은(는) http://sites.google.com/site/extensionshub에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight keywords on webpage that you visited after searching for a keyword on a search engine."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Highlight Keywords 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Supported search engines are
✓ Google
✓ Yahoo
✓ Bing
✓ Yandex
✓ Baidu

How to On/Off the highlighter?
Click extension icon to on/off the highlighter.

How it works?

You search for a keyword on a search engine.
Then visit a webpage from returned results.
Keywords will be highlighted on that page.
To on/off the highlighter, just click extension icon.

What you will get with Highlight Keywords?
✓ A great highlighting extension.
✓ New tab page which includes links to popular sites.                    

확장 프로그램 기본 정보

이름 Highlight Keywords Highlight Keywords
ID ifboknkcilomhlninjdnphlphadpcjli
공식 URL https://chrome.google.com/webstore/detail/highlight-keywords/ifboknkcilomhlninjdnphlphadpcjli
설명 Highlight keywords on webpage that you visited after searching for a keyword on a search engine.
파일 크기 30.43 KB
설치 횟수 355
현재 버전 1.0
최근 업데이트 2017-12-20
출시 날짜 2017-12-20
평점 3.43/5 총 7 개의 평점
개발자 http://sites.google.com/site/extensionshub
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://freepicturesolutions.com/privacy_policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Keywords",
    "default_locale": "en",
    "description": "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "style.css"
    ]
}