Web Highlighter

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

Web Highlighter là gì?

Web Highlighter là một tiện ích mở rộng Chrome được phát triển bởi jfernando0911, và tính năng chính của nó là "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web Highlighter

Tải xuống các tệp mở rộng Web Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
URL Chính Thức https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Mô tả This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Kích Thước Tệp 261 KB
Số Lần Cài Đặt 3,629
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2020-07-17
Ngày Phát Hành 2020-06-01
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển jfernando0911
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}