Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

什么是Selection Highlighter?

Selection Highlighter是由Tao开发的Chrome扩展程序,该扩展的主要功能是“Automatically highlight all occurrences of current selection on current page.”。

扩展截图

screenshot
screenshot
screenshot

下载Selection Highlighter扩展crx文件

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

扩展使用说明

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

扩展基本信息

名称 Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
官方URL https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
简介 Automatically highlight all occurrences of current selection on current page.
文件大小 96.84 KB
安装次数 112
当前版本 0.0.3
更新时间 2020-07-17
上架时间 2020-06-03
评分 3.00/5 共2次评分
开发者 Tao
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/taoalpha/selection-highlighter
帮助页面URL https://github.com/taoalpha/selection-highlighter
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}