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文件

下载Hiliter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": []
        }
    ]
}