Autocomplete Control

Control (Disable/enforce) browser autocomplete on your need

Cos'è Autocomplete Control?

Autocomplete Control è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Control (Disable/enforce) browser autocomplete on your need".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Autocomplete Control

Scarica i file di estensione Autocomplete Control 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

                        Autocomplete Control – Browser extension, which gives you more control over form autocomplete feature.

Available options:
- Do nothing (standard browser behavior)
- Disable autocomplete (enabled by default)
- Force enable autocomplete                    

Informazioni di Base sull'Estensione

Nome Autocomplete Control Autocomplete Control
ID obadmbiiipafnncogfkdfionggeckfia
URL Ufficiale https://chromewebstore.google.com/detail/autocomplete-control/obadmbiiipafnncogfkdfionggeckfia
Descrizione Control (Disable/enforce) browser autocomplete on your need
Dimensione del File 62.37 KB
Conteggio Installazioni 292
Versione Corrente 20.2.12.107
Ultimo Aggiornamento 2020-02-18
Data di Pubblicazione 2020-02-16
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autocomplete Control",
    "version": "20.2.12.107",
    "author": "Ihor Kopach  (https:\/\/kopach.dev)",
    "description": "Control (Disable\/enforce) browser autocomplete on your need",
    "homepage_url": "https:\/\/github.com\/kopach\/autocomplete-control",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "67.0"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ]
}