Web Highlighter

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

Co je Web Highlighter?

Web Highlighter je rozšíření Chrome vyvinuté jfernando0911, a jeho hlavní funkcí je „This extension will help you store and highlight phrases or chunks of text, and add description if needed.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Web Highlighter

Stáhněte si soubory rozšíření Web Highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
Oficiální URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Popis This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Velikost souboru 261 KB
Počet instalací 3,629
Aktuální Verze 0.3.3
Poslední Aktualizace 2020-07-17
Datum Vydání 2020-06-01
Hodnocení 3.71/5 Celkem 7 Hodnocení
Vývojář jfernando0911
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}