Word Highlighter

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

Wat is Word Highlighter?

Word Highlighter is een Chrome-extensie ontwikkeld door Rafael Almeida, en de belangrijkste functie is "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Word Highlighter

Download Word Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
Officiële URL https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Beschrijving This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Bestandsgrootte 229 KB
Aantal Installaties 826
Huidige Versie 1.0.2
Laatst Bijgewerkt 2016-11-27
Publicatiedatum 2016-11-27
Beoordeling 2.75/5 Totaal 8 Beoordelingen
Ontwikkelaar Rafael Almeida
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}