Web Highlighter

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

Was ist Web Highlighter?

Web Highlighter ist eine Chrome-Erweiterung, die von jfernando0911 entwickelt wurde, und ihr Hauptmerkmal ist "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Erweiterungsscreenshots

screenshot
screenshot

Web Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
Offizielle URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Beschreibung This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Dateigröße 261 KB
Installationsanzahl 3,629
Aktuelle Version 0.3.3
Letztes Update 2020-07-17
Veröffentlichungsdatum 2020-06-01
Bewertung 3.71/5 Insgesamt 7 Bewertungen
Entwickler jfernando0911
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}