Word Highlighter

Create a list of words and phrases. See them highlighted on every page you visit.

Τι είναι το Word Highlighter;

Το Word Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ainzzorl, και η κύρια λειτουργία του είναι "Create a list of words and phrases. See them highlighted on every page you visit.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Word Highlighter

Λήψη αρχείων επέκτασης Word Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The extension can be used to expand your vocabulary. When you learn a new word, add it to Word Highlighter, and you won't forget the word because it will be highlighted every time you encounter it.

Word Highlighter is smart about how it matches words on the page with words in the dictionary. It understands that "cherry" and "cherries", "aprender Español" and "aprendemos Español" are the same. Smart matching is supported in English, Spanish, French, Italian, Dutch, Norwegian, Portuguese, Russian and Swedish.

- Tracks words and definitions. Words can be added either in the "Words" tab of the extension popup, or by selecting the word and clicking "Add word" in the context menu.
- Highlights tracked words on all pages.
- Displays a tooltip with the definition when you hover over a highlighted word.
- Displays info about the number of highlighted words on the page.
- Supports exporting words to and importing from csv and json.
- Supports customizing highlight color.
- Supports having multiple groups of words with different settings.
- Supports disabling all highlights or specific groups on selected pages.
- Tracks how often each word was found.
- Respects your privacy - it doesn't send any of your data anywhere.
- Free and open-source.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Word Highlighter Word Highlighter
ID flpifgahbaopfmnlmcgkkodanhoifdpa
Επίσημο URL https://chromewebstore.google.com/detail/word-highlighter/flpifgahbaopfmnlmcgkkodanhoifdpa
Περιγραφή Create a list of words and phrases. See them highlighted on every page you visit.
Μέγεθος Αρχείου 1.01 MB
Αριθμός Εγκαταστάσεων 2,852
Τρέχουσα Έκδοση 1.7.3
Τελευταία Ενημέρωση 2021-10-24
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.20/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής ainzzorl
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ainzzorl/wordhighlighter
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "Create a list of words and phrases. See them highlighted on every page you visit.",
    "version": "1.7.3",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/lib.js",
            "scripts\/background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/imports.js",
                "js\/lib.js",
                "scripts\/content-script.js"
            ],
            "css": [
                "css\/wordhighlighter.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon-32.png"
        },
        "default_title": "Word Highlighter",
        "default_popup": "html\/mainDialog.html"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "applications": {
        "gecko": {
            "id": "{bec55136-0785-4dbc-bb76-fab9ba596c11}"
        }
    }
}