Hiliter

Instantly see where your keywords and links are on every webpage.

Hiliter란 무엇입니까?

Hiliter은(는) https://hiliter.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly see where your keywords and links are on every webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        You will be able to find your links and keywords easily now.  Find where your name or brand is mentioned on a webpage or social media feed.  Also easily find any links to URLs that you specify are on the webpage as well.

You can blacklist domains the highlighting is paused when on those sites.  This is helpful if you're trying to highlight brand names, but want to ignore the highlighting when on the brand's own site (which would probably highlight everything).                    

확장 프로그램 기본 정보

이름 Hiliter Hiliter
ID jgjjlicojciehdiompgpeeogkaccjcnc
공식 URL https://chromewebstore.google.com/detail/hiliter/jgjjlicojciehdiompgpeeogkaccjcnc
설명 Instantly see where your keywords and links are on every webpage.
파일 크기 76.53 KB
설치 횟수 69
현재 버전 1.0.0.11
최근 업데이트 2023-06-28
출시 날짜 2022-12-13
평점 4.56/5 총 9 개의 평점
개발자 https://hiliter.co
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hiliter.co
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hiliter",
    "description": "Instantly see where your keywords and links are on every webpage.",
    "version": "1.0.0.11",
    "manifest_version": 3,
    "icons": {
        "128": "\/img\/logo.png"
    },
    "action": {
        "default_popup": "\/pages\/popup\/index.html",
        "default_icons": {
            "16": "\/img\/logo_grey.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/link-hiliter.web.app\/",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "\/js\/content.js"
            ],
            "css": [
                "\/css\/content.css"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "\/js\/app_content.js"
            ],
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/link-hiliter.web.app\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}