Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

Was ist Word Highlighter?

Word Highlighter ist eine Chrome-Erweiterung, die von Rafael Almeida entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Erweiterungsscreenshots

screenshot
screenshot

Word Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word 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

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

Grundlegende Informationen zur Erweiterung

Name Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
Offizielle URL https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Beschreibung This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Dateigröße 229 KB
Installationsanzahl 826
Aktuelle Version 1.0.2
Letztes Update 2016-11-27
Veröffentlichungsdatum 2016-11-27
Bewertung 2.75/5 Insgesamt 8 Bewertungen
Entwickler Rafael Almeida
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}