Web Highlighter

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

Qu'est-ce que Web Highlighter ?

Web Highlighter est une extension Chrome développée par jfernando0911, et sa fonction principale est "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Web Highlighter

Téléchargez les fichiers d'extension Web Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
URL Officiel https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Description This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Taille du Fichier 261 KB
Nombre d'Installations 3,629
Version Actuelle 0.3.3
Dernière Mise à Jour 2020-07-17
Date de Publication 2020-06-01
Évaluation 3.71/5 Total 7 Évaluations
Développeur jfernando0911
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}