Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

什么是Web Highlighter?

Web Highlighter是由jfernando0911开发的Chrome扩展程序,该扩展的主要功能是“This extension will help you store and highlight phrases or chunks of text, and add description if needed.”。

扩展截图

screenshot
screenshot

下载Web Highlighter扩展crx文件

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

扩展使用说明

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

扩展基本信息

名称 Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
官方URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
简介 This extension will help you store and highlight phrases or chunks of text, and add description if needed.
文件大小 261 KB
安装次数 3,629
当前版本 0.3.3
更新时间 2020-07-17
上架时间 2020-06-01
评分 3.71/5 共7次评分
开发者 jfernando0911
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}