Custom Highlight

A chrome extension for customizing highlight color.

Custom Highlight là gì?

Custom Highlight là một tiện ích mở rộng Chrome được phát triển bởi Andreto, và tính năng chính của nó là "A chrome extension for customizing highlight color.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Custom Highlight 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

                        Change Highlight background and text-color. It's easy to set the color with the built-in color picker or by copy and pasting color hex codes.

Works on pretty much all websites, including Google Docs.

Compatible with Dark Reader.
--
This extension does not read or handle any user data.
https://andreto.github.io/Custom-Highlight/                    

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

Tên Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
URL Chính Thức https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Mô tả A chrome extension for customizing highlight color.
Kích Thước Tệp 56.93 KB
Số Lần Cài Đặt 7,000
Phiên Bản Hiện Tại 1.5.0
Cập Nhật Lần Cuối 2021-05-24
Ngày Phát Hành 2020-02-19
Đánh Giá 3.85/5 Tổng số 20 Đánh Giá
Nhà Phát Triển Andreto
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://andreto.github.io/Custom-Highlight
URL Trang Trợ Giúp https://github.com/Andreto/Custom-Highlight
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Highlight",
    "description": "A chrome extension for customizing highlight color.",
    "version": "1.5.0",
    "author": "Andreto",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}