Multi-Highlight Tool

Search and highlight multiple words on web pages.

Multi-Highlight Tool란 무엇입니까?

Multi-Highlight Tool은(는) multihighttoolextension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search and highlight multiple words on web pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Multi-Highlight Tool 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easily add words to a list and have them highlighted on web pages.                    

확장 프로그램 기본 정보

이름 Multi-Highlight Tool Multi-Highlight Tool
ID elbamfklmdfhbighpndmfdidofdonigb
공식 URL https://chromewebstore.google.com/detail/multi-highlight-tool/elbamfklmdfhbighpndmfdidofdonigb
설명 Search and highlight multiple words on web pages.
파일 크기 50.12 KB
설치 횟수 30,204
현재 버전 1.0
최근 업데이트 2021-08-28
출시 날짜 2021-08-28
평점 4.43/5 총 14 개의 평점
개발자 multihighttoolextension
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/19x19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/highlight.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/highlighter.js",
                "js\/content-action.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "description": "Search and highlight multiple words on web pages.",
    "icons": {
        "100": "img\/100x100.png",
        "128": "img\/128x128.png",
        "19": "img\/19x19.png",
        "48": "img\/48x48.png"
    },
    "manifest_version": 2,
    "name": "Multi-Highlight Tool",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}