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
官方網址 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"
        ]
    }
}