Web Highlighter

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

Что такое Web Highlighter?

Web Highlighter - это расширение Chrome, разработанное jfernando0911, и его основная функция - "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Web Highlighter

Скачайте файлы расширений 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"
        ]
    }
}