Keywords Highlighter

a chrome extension that highlights keywords on web pages, making it easy to find or skip information

Keywords Highlighter란 무엇입니까?

Keywords Highlighter은(는) Maxim Zhukov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a chrome extension that highlights keywords on web pages, making it easy to find or skip information"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Introducing Keyword Highlighter - the must-have Chrome extension for anyone who wants to quickly and easily find or skip information on web pages.

With Keyword Highlighter, you can highlight keywords of your choice on any webpage, making it a breeze to find the information you're looking for. Whether you're a job seeker scanning job descriptions for specific keywords or an HR professional searching for qualified candidates, this extension is the perfect tool for you.

You can highlight both positive and negative keywords, giving you the power to easily filter out irrelevant information and focus only on the content that matters to you. Plus, the extension is incredibly easy to use - simply install it and start highlighting!

But that's not all - Keyword Highlighter also comes equipped with a variety of features to make your browsing experience even better. You can easily customize the colors and styles of your highlights, create and save multiple highlight sets for different use cases, and even set up automatic highlighting rules for certain websites.

Don't hesitate, install Keyword Highlighter now and enjoy effortless web browsing!                    

확장 프로그램 기본 정보

이름 Keywords Highlighter Keywords Highlighter
ID lmaonnpepldfnbkbmhkkficpmjdlojnn
공식 URL https://chromewebstore.google.com/detail/keywords-highlighter/lmaonnpepldfnbkbmhkkficpmjdlojnn
설명 a chrome extension that highlights keywords on web pages, making it easy to find or skip information
파일 크기 139 KB
설치 횟수 376
현재 버전 0.0.6
최근 업데이트 2023-05-23
출시 날짜 2023-05-06
평점 2.33/5 총 3 개의 평점
개발자 Maxim Zhukov
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FSou1/Keywords-Highlighter
도움말 페이지 URL https://github.com/FSou1/Keywords-Highlighter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Keywords Highlighter",
    "version": "0.0.6",
    "description": "a chrome extension that highlights keywords on web pages, making it easy to find or skip information",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}