Custom Highlight

A chrome extension for customizing highlight color.

Custom Highlight क्या है?

Custom Highlight Andreto द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension for customizing highlight color."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Custom Highlight एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}