Multiple Search and Highlight (Dev Edition)

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

Multiple Search and Highlight (Dev Edition)란 무엇입니까?

Multiple Search and Highlight (Dev Edition)은(는) brian.girko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight multiple words separated by comma, space or arbitrary separator with persistent history"입니다.

확장 프로그램 스크린샷

screenshot

Multiple Search and Highlight (Dev Edition) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 (Dev Edition) Multiple Search and Highlight (Dev Edition)
ID mjmdpcpejfpacdlehioncilhdhcpopmk
공식 URL https://chromewebstore.google.com/detail/multiple-search-and-highl/mjmdpcpejfpacdlehioncilhdhcpopmk
설명 Highlight multiple words separated by comma, space or arbitrary separator with persistent history
파일 크기 113 KB
설치 횟수 404
현재 버전 0.4.6
최근 업데이트 2022-12-27
출시 날짜 2021-12-11
평점 5.00/5 총 4 개의 평점
개발자 brian.girko
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://add0n.com/multiple-highlight.html
도움말 페이지 URL https://add0n.com/multiple-highlight.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.4.6",
    "name": "Multiple Search and Highlight (Dev Edition)",
    "description": "Highlight multiple words separated by comma, space or arbitrary separator with persistent history",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "homepage_url": "https:\/\/add0n.com\/multiple-highlight.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_popup": "data\/popup\/index.html"
    },
    "offline_enabled": true,
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "commands": {
        "_execute_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",
        "open_in_tab": true
    }
}