Hiliter

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

Hiliter là gì?

Hiliter là một tiện ích mở rộng Chrome được phát triển bởi https://hiliter.co, và tính năng chính của nó là "Instantly see where your keywords and links are on every webpage.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hiliter

Tải xuống các tệp mở rộng Hiliter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hiliter Hiliter
ID jgjjlicojciehdiompgpeeogkaccjcnc
URL Chính Thức https://chromewebstore.google.com/detail/hiliter/jgjjlicojciehdiompgpeeogkaccjcnc
Mô tả Instantly see where your keywords and links are on every webpage.
Kích Thước Tệp 76.53 KB
Số Lần Cài Đặt 69
Phiên Bản Hiện Tại 1.0.0.11
Cập Nhật Lần Cuối 2023-06-28
Ngày Phát Hành 2022-12-13
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://hiliter.co
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://hiliter.co
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}