Word Highlighter

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

Cos'è Word Highlighter?

Word Highlighter è un'estensione di Chrome sviluppata da Rafael Almeida, e la sua funzione principale è "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Word Highlighter

Scarica i file di estensione Word Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
URL Ufficiale https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Descrizione This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Dimensione del File 229 KB
Conteggio Installazioni 826
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-11-27
Data di Pubblicazione 2016-11-27
Valutazione 2.75/5 Totale 8 Valutazioni
Sviluppatore Rafael Almeida
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}