AutoHighlight Input

Automatically highlight text in an input box when clicked

Cos'è AutoHighlight Input?

AutoHighlight Input è un'estensione di Chrome sviluppata da Diamondium Technologies, LLC, e la sua funzione principale è "Automatically highlight text in an input box when clicked".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AutoHighlight Input

Scarica i file di estensione AutoHighlight Input 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

                        When you come across a pre-populated input box and go to click it, chances are your intention is to delete the entire content and replace it with your own.

This extension will save you the step of manually highlighting all of the text once the input field gains focus. The content of the input will auto-highlight so you can easily delete or begin typing over the existing content.


Sample Use Case
Amazon search results will show what you searched in the textbox at the top screen. To perform another search, you have to first manually highlight the contents in the textbox to remove it.                    

Informazioni di Base sull'Estensione

Nome AutoHighlight Input AutoHighlight Input
ID mdcpdmcogdgkpbekadapocipbilcimdb
URL Ufficiale https://chromewebstore.google.com/detail/autohighlight-input/mdcpdmcogdgkpbekadapocipbilcimdb
Descrizione Automatically highlight text in an input box when clicked
Dimensione del File 9.45 KB
Conteggio Installazioni 125
Versione Corrente 1.05
Ultimo Aggiornamento 2020-07-25
Data di Pubblicazione 2020-06-26
Sviluppatore Diamondium Technologies, LLC
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutoHighlight Input",
    "version": "1.05",
    "description": "Automatically highlight text in an input box when clicked",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "auto-highlight-input-min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/auto-highlight-input-16.png",
        "32": "images\/auto-highlight-input-32.png",
        "48": "images\/auto-highlight-input-48.png",
        "128": "images\/auto-highlight-input-128.png"
    },
    "manifest_version": 2
}