Highlight Me

This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…

什么是Highlight Me?

Highlight Me是由Faycal Bessayah开发的Chrome扩展程序,该扩展的主要功能是“This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…”。

扩展截图

screenshot
screenshot

下载Highlight Me扩展crx文件

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

扩展使用说明

                        This simple tool allows you to highlight selected text on web pages.
- You can choose among a variety of background colors.
- You can point out important information in long web pages by highlighting text with your mouse.

* You need to refresh opened pages after installation.                    

扩展基本信息

名称 Highlight Me Highlight Me
ID ddpcccogmbnjklniagfkclpbohhaoidf
官方URL https://chromewebstore.google.com/detail/highlight-me/ddpcccogmbnjklniagfkclpbohhaoidf
简介 This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…
文件大小 265 KB
安装次数 27
当前版本 1.0
更新时间 2021-03-14
上架时间 2021-01-09
开发者 Faycal Bessayah
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Me",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "colorPick.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "Highlight.png",
        "default_popup": "index.html",
        "default_title": "Highlight Me"
    }
}