Autocomplete Control

Control (Disable/enforce) browser autocomplete on your need

What is Autocomplete Control?

Autocomplete Control is a Chrome extension developed by Unknown, and its main feature is "Control (Disable/enforce) browser autocomplete on your need".

Extension Screenshots

screenshot

Download Autocomplete Control Extension CRX File

Download Autocomplete Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Autocomplete Control Autocomplete Control
ID obadmbiiipafnncogfkdfionggeckfia
Official URL https://chromewebstore.google.com/detail/autocomplete-control/obadmbiiipafnncogfkdfionggeckfia
Description Control (Disable/enforce) browser autocomplete on your need
File Size 62.37 KB
Installation Count 292
Current Version 20.2.12.107
Last Updated 2020-02-18
Publish Date 2020-02-16
Rating 2.33/5 Total 3 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
        }
    ]
}