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文件

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

扩展使用说明

                        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"
    ]
}