Automatic Keywords Highlighter

Automatically highlights given keywords on any web page you visit.

Cos'è Automatic Keywords Highlighter?

Automatic Keywords Highlighter è un'estensione di Chrome sviluppata da Matthias Path, e la sua funzione principale è "Automatically highlights given keywords on any web page you visit.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Automatic Keywords Highlighter

Scarica i file di estensione Automatic Keywords 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

                        Set a list of keywords and Automatic Keywords Highlighter will automatically highlight them on any web page you visit. The icon shows you how often a keyword was highlighted on the current page.

Instead of searching for the interesting bits of a web page, let Automatic Keywords Highlighter show them to you instantly. Simply type in a list of keywords and pick your favourite highlighter color.

Stop searching! Use Automatic Keywords Highlighter!                    

Informazioni di Base sull'Estensione

Nome Automatic Keywords Highlighter Automatic Keywords Highlighter
ID gcpknobcboilhnacklgmaamlcnblneoi
URL Ufficiale https://chrome.google.com/webstore/detail/automatic-keywords-highli/gcpknobcboilhnacklgmaamlcnblneoi
Descrizione Automatically highlights given keywords on any web page you visit.
Dimensione del File 46.37 KB
Conteggio Installazioni 5,000
Versione Corrente 0.1.0
Ultimo Aggiornamento 2015-04-15
Data di Pubblicazione 2015-04-15
Valutazione 3.36/5 Totale 36 Valutazioni
Sviluppatore Matthias Path
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wrzlbrmft/chrome-keywords-highlighter/blob/master/README.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic Keywords Highlighter",
    "short_name": "Automatic Keywords Highlighter",
    "description": "Automatically highlights given keywords on any web page you visit.",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "72": "icons\/icon72.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "homepage_url": "https:\/\/github.com\/wrzlbrmft\/chrome-keywords-highlighter\/blob\/master\/README.md",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "72": "icons\/icon72.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        },
        "default_title": "Automatic Keywords Highlighter",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}