Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

Selection Highlighter란 무엇입니까?

Selection Highlighter은(는) https://neaumusic.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight occurrences of selected text, with or without a keypress."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Selection Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        For code inspection and document analysis: search for and find keywords.

- No need to press CMD+F
- Maintains current selection
- Open source and configurable options (JavaScript)
- Ensure a "gate" key is pressed
- Match whole word and/or case-insensitive
- Blacklist bad hosts and ancestor HTML nodes

Highlight works on all sites, including GitHub, StackOverflow, HackerNews, Reddit, etc.

See all code involved:
1. Dev Console -> Sources -> Content Scripts -> Selection Highlighter
2. chrome://extensions -> Selection Highlighter -> Options -> Dev Console -> Sources

https://github.com/neaumusic/selection-highlighter                    

확장 프로그램 기본 정보

이름 Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
공식 URL https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
설명 Highlight occurrences of selected text, with or without a keypress.
파일 크기 470 KB
설치 횟수 8,418
현재 버전 3.1.0
최근 업데이트 2024-01-14
출시 날짜 2020-06-07
평점 4.59/5 총 78 개의 평점
개발자 https://neaumusic.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/neaumusic/selection-highlighter
도움말 페이지 URL https://github.com/neaumusic/selection-highlighter/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Highlighter",
    "version": "3.1.0",
    "description": "Highlight occurrences of selected text, with or without a keypress.",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content_script\/main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Selection Highlighter",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "1024": "images\/icon.png"
    },
    "permissions": [
        "storage"
    ]
}