Autocomplete Control

Control (Disable/enforce) browser autocomplete on your need

Wat is Autocomplete Control?

Autocomplete Control is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Control (Disable/enforce) browser autocomplete on your need".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Autocomplete Control

Download Autocomplete Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Autocomplete Control Autocomplete Control
ID obadmbiiipafnncogfkdfionggeckfia
Officiële URL https://chromewebstore.google.com/detail/autocomplete-control/obadmbiiipafnncogfkdfionggeckfia
Beschrijving Control (Disable/enforce) browser autocomplete on your need
Bestandsgrootte 62.37 KB
Aantal Installaties 292
Huidige Versie 20.2.12.107
Laatst Bijgewerkt 2020-02-18
Publicatiedatum 2020-02-16
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}