Multi Highlight

Efficiently and flexibly highlight your online reading.

什麼是Multi Highlight?

Multi Highlight是由VinC開發的Chrome擴展程式,該擴展的主要功能是“Efficiently and flexibly highlight your online reading.”。

擴展截圖

screenshot
screenshot
screenshot

下載Multi Highlight擴展crx文件

下載Multi Highlight擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Are you tired of losing track of important information in your online reading? Multi Highlight is here to help! With this powerful and efficient chrome extension, you can easily highlight all your user-specified words in webpages with beautiful colors.

Multi Highlight can do real-time highlighting as you type, automatically re-highlight your word list when the webpage content changes or when the page is loaded, and it accepts custom word separators. You can save your user-specified word list, do whole word and case-sensitive searches, and even group words by colors.

With Multi Highlight, you can stay focused and efficient while reading online. It's perfect for students and professionals who regularly read online content for studying or work. Try Multi Highlight today and take your online reading to the next level!

Features: 
✔️ Real-time Highlight  
✔️ Auto-ReHighlight  
✔️ Customizable word separator  
✔️ Whole word, Case-sensitivity Search  
✔️ Group words by colors    

2023 February
* Adapt to manifest V3
* Refresh words (1) when textbox is focused but inactive for short a period (2) when popup is closed
* Fix style broke in browser's built-in page and in pages that loaded before extension installation. In these pages, disable textbox and show notification
* Update UI

2022 September
* Feature Auto-Rehighlight
* Bug fix: rehighlight words when extension is softly disabled
* Bug fix: webpage broke if website customize  element

2022 June  
* Improve adaptability -- add support to highlight asynchronous text (e.g. AJAX content)
* Fix option page's saving issue

2022 January  
* Support nested highlight
* Bug fix: innerHTML deleted unintentionally
* Bug fix: Word boundary not working for keyword-list
* DEV Change keyword data structure and update the version to "2.8.0" due to 
* Feature Re-highlighting.
* Feature Toggle highlighting.
* Improve stability
* Adjust interface
* Fix bug (show current keyword list right after popup; properly remove highlights when NewLineNewColor mode is on)

2021 December
* Add options: Whole words only, Casesensitive
* Update the highlight lib from [npmjs](https://www.npmjs.com/package/jquery-highlight)
* Modified: Handle the options change in one callback function.
* Modified: Use 2D array to store the keywords in `NewColorNewLine` mode.
* Bugfix: Keywords removal should not remove the container.
* Add keywords display zone
* Check wheter the page contains the keyword(s) or not, if not, gray it
* `Ctrl+Click` to delete the correspond keyword

2021 August
* Fix user settings reset after browser update

2021 May
* Improve UI
* Change Logo
* Add "Always highlight" feature
* Add "Change color after newline" feature
* Fix unstable typesetting issue when typing
* Add 10 more highlight colors (now contains 20 colors)

2019 October
* Customizable window size
* Add 4 more colors (now contains 10 colors)

2019 June
* Add "paste keywords to new pages" mode

2019 May
* Minimize extension size

2019 January
* Highlight any strings (not just full word)
* Add Instant Search (highlight on-the-fly)
* Add customizable delimiter
* Make Highlight Words individual to each tab
* UI changes
* Add Ctrl+Shift+F as default shortcut

2018 December
* Organize code
* Change UI (based on Multi-Highlight)
* Change extension icon                    

擴展基本資訊

名稱 Multi Highlight Multi Highlight
ID ghinpogonpmlphfkmnjfapdaoaainejn
官方網址 https://chromewebstore.google.com/detail/multi-highlight/ghinpogonpmlphfkmnjfapdaoaainejn
簡介 Efficiently and flexibly highlight your online reading.
檔案大小 112 KB
安裝次數 43,071
目前版本 2.11.1
更新時間 2023-02-18
上架時間 2019-10-31
評分 3.49/5 共 57 次評分
開發者 VinC
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/yiminzme/Multi-Highlight
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Multi Highlight",
    "version": "2.11.1",
    "description": "Efficiently and flexibly highlight your online reading.",
    "action": {
        "default_logo": {
            "19": "img\/logo19.png",
            "38": "img\/logo38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png",
        "350": "img\/logo350.png"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery\/jquery.js",
                "jquery\/jquery.highlight.js",
                "content-action.js"
            ],
            "css": [
                "highlight.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            },
            "description": "Activate the extension"
        }
    },
    "options_page": "options\/options.html",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}