Custom Highlight

A chrome extension for customizing highlight color.

Apa itu Custom Highlight?

Custom Highlight adalah ekstensi Chrome yang dikembangkan oleh Andreto, dan fitur utamanya adalah "A chrome extension for customizing highlight color.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Custom Highlight

Unduh file ekstensi Custom Highlight dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
URL Resmi https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Deskripsi A chrome extension for customizing highlight color.
Ukuran File 56.93 KB
Jumlah Instalasi 7,000
Versi Saat Ini 1.5.0
Terakhir Diperbarui 2021-05-24
Tanggal Publikasi 2020-02-19
Penilaian 3.85/5 Total 20 Penilaian
Pengembang Andreto
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://andreto.github.io/Custom-Highlight
URL Halaman Bantuan https://github.com/Andreto/Custom-Highlight
Bahasa yang Didukung 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"
    }
}