Highlight tool

Highlight tool with jumps and Regex

Cos'è Highlight tool?

Highlight tool è un'estensione di Chrome sviluppata da Utopia, e la sua funzione principale è "Highlight tool with jumps and Regex".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Highlight tool

Scarica i file di estensione Highlight tool 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

                        Quickly highlight text in webpages using regular text or RegExp.

Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.                    

Informazioni di Base sull'Estensione

Nome Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
URL Ufficiale https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
Descrizione Highlight tool with jumps and Regex
Dimensione del File 209 KB
Conteggio Installazioni 3,000
Versione Corrente 0.0.6
Ultimo Aggiornamento 2017-02-14
Data di Pubblicazione 2017-02-14
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore Utopia
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.6",
    "name": "Highlight tool",
    "description": "Highlight tool with jumps and Regex",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}