Highlight tool

Highlight tool with jumps and Regex

什么是Highlight tool?

Highlight tool是由Utopia开发的Chrome扩展程序,该扩展的主要功能是“Highlight tool with jumps and Regex”。

扩展截图

screenshot

下载Highlight tool扩展crx文件

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

扩展使用说明

                        Quickly highlight text in webpages using regular text or RegExp.

Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.                    

扩展基本信息

名称 Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
官方URL https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
简介 Highlight tool with jumps and Regex
文件大小 209 KB
安装次数 3,000
当前版本 0.0.6
更新时间 2017-02-14
上架时间 2017-02-14
评分 4.00/5 共5次评分
开发者 Utopia
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.6",
    "name": "Highlight tool",
    "description": "Highlight tool with jumps and Regex",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}