Custom Highlight

A chrome extension for customizing highlight color.

ما هو Custom Highlight؟

Custom Highlight هو إضافة Chrome تم تطويرها بواسطة Andreto، والميزة الرئيسية لها هي "A chrome extension for customizing highlight color.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Custom Highlight

قم بتنزيل ملفات الامتداد Custom Highlight بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}