Highlight Magic

Enables user to highlight words

Highlight Magicคืออะไร?

Highlight Magic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Highlight Magic และคุณลักษณะหลักของมันคือ "Enables user to highlight words"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highlight Magic

ดาวน์โหลดไฟล์ส่วนขยาย Highlight Magic ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple highlight tool which enables anyone to highlight words on any website.

*The tool went through a slight overhaul, please check the "What's new 1.1.3" below!

Features:

- Assign color for each word
- Import from raw list or text file *new*
- Lists are a single color by default *new*
- Group your words into lists for easier organization
- Sync function to transfer your lists across devices.
- Import/Export your lists.
- Quickfind, ctrl-shift-f to bring up quickfind and search instantly, save later. 
- Each word in the list can be case sensitive
- Can use regular expression tokens
- Blacklist sites and pages
- Can match complete words or part of a word
- Stylize your words in Style tab *new*
- Dark mode *new*

To enable Regex tokens, blacklist a site, toggle complete words on or off, go to settings.

If you have any issues please ask & I will help you out!
If you found a bug report it and I'll fix it as soon as possible!
Ideas how to make the extension better are encouraged!

What's new:
1.1.4: Some bug fixes that manifested when updating from 1.1.2 to 1.1.3.
1.1.3: 
-Optimized highlighting and fix slowdowns when new elements are added to the page.
- Added import options for raw lists and text files
- Can copy (crtl-c) & paste (ctrl-v) words directly to the list editor
- Press ctrl-a to select all visible words
- Filter words
- Made all lists a single random color by default, can be changed in style settings
- New style tab that let's you customize your highlighted words
- Dark mode!
- Made some stylistic changes to the GUI to make it a bit more modern looking

1.1.2: Bug fix: Replaced additional event paths that broke the mass action option when ticking the a word's checkbox.
 - Toggling a list on/off now disables/enables the highlighting in the active tab.
1.1.1: Bug Fix - event path property is undefined, replaced event paths with composedPath method.

1.1.0: -  Lists are now available! Group your words into lists.
           -  Sync function to transfer your lists across devices.
           -  Import/Export your lists.
           -  Quickfind, ctrl-shift-f to bring up quickfind.
           - Bug Fix: contentEditable incompatibility elements no longer crash page.
           - Highlights in iframes.

1.0.3 - Bug Fix: Text nodes & characterData changes succesfully forwarded to highlighter.
1.0.2 - Bug Fix: Text is no longer removed from textareas.

Extension icon and promotional tiles by Maria Gregoriou behance.net/MariaGregoriou

Icons By Font Awesome https://fontawesome.com/license                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Highlight Magic Highlight Magic
ID ebjdbdfklikkclechjijionbjkhhljml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/highlight-magic/ebjdbdfklikkclechjijionbjkhhljml
คำอธิบาย Enables user to highlight words
ขนาดไฟล์ 418 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 1.1.4
อัปเดตครั้งล่าสุด 2024-02-02
วันที่เผยแพร่ 2020-09-23
คะแนน 4.20/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา Highlight Magic
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Highlight Magic",
    "description": "Enables user to highlight words",
    "version": "1.1.4",
    "action": {
        "default_title": "Highlight Magic"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "icons\/16px.png",
        "48": "icons\/48px.png",
        "128": "icons\/128px.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "quickfind.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}