Highlit

Highlights all occurrences of the currently selected word on page.

什么是Highlit?

Highlit是由Nikola Toshev开发的Chrome扩展程序,该扩展的主要功能是“Highlights all occurrences of the currently selected word on page.”。

扩展截图

screenshot
screenshot
screenshot

下载Highlit扩展crx文件

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

扩展使用说明

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

扩展基本信息

名称 Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
官方URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
简介 Highlights all occurrences of the currently selected word on page.
文件大小 15.58 KB
安装次数 952
当前版本 0.2.2
更新时间 2019-03-08
上架时间 2019-03-08
评分 3.19/5 共16次评分
开发者 Nikola Toshev
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}