AutoHighlight Input

Automatically highlight text in an input box when clicked

Hvad er AutoHighlight Input?

AutoHighlight Input er en Chrome-udvidelse udviklet af Diamondium Technologies, LLC, og dens hovedfunktion er "Automatically highlight text in an input box when clicked".

Udvidelsesskærmbilleder

screenshot

Download AutoHighlight Input-udvidelses-CRX-fil

Download AutoHighlight Input-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AutoHighlight Input AutoHighlight Input
ID mdcpdmcogdgkpbekadapocipbilcimdb
Officiel URL https://chromewebstore.google.com/detail/autohighlight-input/mdcpdmcogdgkpbekadapocipbilcimdb
Beskrivelse Automatically highlight text in an input box when clicked
Filstørrelse 9.45 KB
Antal Installationer 125
Nuværende Version 1.05
Senest Opdateret 2020-07-25
Udgivelsesdato 2020-06-26
Udvikler Diamondium Technologies, LLC
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}