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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    }
}