Multiple Search and Highlight

Highlight multiple words separated by comma, space or arbitrary separator with persistent history

什么是Multiple Search and Highlight?

Multiple Search and Highlight是由brian.girko开发的Chrome扩展程序,该扩展的主要功能是“Highlight multiple words separated by comma, space or arbitrary separator with persistent history”。

扩展截图

screenshot

下载Multiple Search and Highlight扩展crx文件

下载Multiple Search and Highlight扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is meant to highlight multiple terms on large documents as fast as possible. This version uses native highlighting which guarantees the highliest possible searching performance without altering the DOM tree.

Features:
1. Does not manipulate DOM tree
2. Fast response on large document trees
3. Fast response on multiple queries
3. Supports regular expression highlighting
4. Supports  a few different word separator
5. Supports keyboard navigation (Enter to search for the next match and Shift + Enter to search the previous match)
6. Works completely offline

Privacy:
This extension works completely offline. There is no server-side interaction whatsoever.

Query History:
This extension automatically saves your search queries per domain (After pressing Enter or Shift + Enter). It offers the previous queries when the popup appears on the same domain. To alter the storage method, visit the options page.

Keyboard Shortcuts:
This extension supports keyword-only usage:
  -> Open chrome://extensions/shortcuts in a browser tab
  -> Find the extension and assign a keyboard shortcut

1. You can open the search panel by configuring a shortcut for it.
2. You can also automatically search for the last search query without opening the search interface
3. There is a keyboard shortcut to hide search results as well in this interface.
--
When the interface is open:
1. Press the Enter key to find the next match
2. Press the Shift + Enter keys to find the previous match
3. Press the Esc key to close the search panel
4. Press the Shift + Esc keys to close the search panel and keep the highlights

Introduction:
This extension can be used to dynamically mark search terms with optional custom regular expressions support and offers you built-in options like diacritics support or separate word search. The interface is similar to the default browser's find interface. You can press the Enter key to select the next occurrence, or press the Shift + Enter combination for backward matching. This extension works offline and has no server-side interaction whatsoever to protect user privacy. Also, it only gets activated once the user opens the popup. There is no resource usage when the extension is not being used. To enhance the searching capability of the extension, sub-queries are only being applied to the page once.                    

扩展基本信息

名称 Multiple Search and Highlight Multiple Search and Highlight
ID doagleaopbffngpffnmnajoiablpakfj
官方URL https://chromewebstore.google.com/detail/multiple-search-and-highl/doagleaopbffngpffnmnajoiablpakfj
简介 Highlight multiple words separated by comma, space or arbitrary separator with persistent history
文件大小 112 KB
安装次数 10,000
当前版本 0.4.4
更新时间 2022-03-06
上架时间 2020-03-04
评分 4.12/5 共34次评分
开发者 brian.girko
电子邮箱 [email protected]
付费类型 free
扩展官网 https://add0n.com/multiple-highlight.html
帮助页面URL https://add0n.com/multiple-highlight.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.4.4",
    "name": "Multiple Search and Highlight",
    "description": "Highlight multiple words separated by comma, space or arbitrary separator with persistent history",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "homepage_url": "https:\/\/add0n.com\/multiple-highlight.html",
    "background": {
        "persistent": false,
        "scripts": [
            "app.js\/base.js",
            "data\/popup\/utils.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "data\/popup\/index.html"
    },
    "offline_enabled": true,
    "icons": {
        "512": "data\/icons\/512.png",
        "256": "data\/icons\/256.png",
        "128": "data\/icons\/128.png",
        "64": "data\/icons\/64.png",
        "32": "data\/icons\/32.png",
        "16": "data\/icons\/16.png"
    },
    "commands": {
        "_execute_browser_action": [],
        "remove_highlight": {
            "description": "Remove all highlights"
        },
        "ckey_highlight": {
            "description": "Highlight the last searched query without opening the extension's interface"
        }
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}