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"
        ]
    }
}