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
公式URL 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
Eメール [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"
    }
}