Custom Highlight

A chrome extension for customizing highlight color.

什麼是Custom Highlight?

Custom Highlight是由Andreto開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension for customizing highlight color.”。

擴展截圖

screenshot
screenshot
screenshot

下載Custom Highlight擴展crx文件

下載Custom Highlight擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
官方網址 https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
簡介 A chrome extension for customizing highlight color.
檔案大小 56.93 KB
安裝次數 7,000
目前版本 1.5.0
更新時間 2021-05-24
上架時間 2020-02-19
評分 3.85/5 共 20 次評分
開發者 Andreto
電子郵箱 [email protected]
付費類型 free
擴展官網 https://andreto.github.io/Custom-Highlight
說明頁面URL https://github.com/Andreto/Custom-Highlight
支援的語言 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"
    }
}