Autocomplete Control

Control (Disable/enforce) browser autocomplete on your need

Apa itu Autocomplete Control?

Autocomplete Control adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Control (Disable/enforce) browser autocomplete on your need".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Autocomplete Control

Unduh file ekstensi Autocomplete Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Autocomplete Control Autocomplete Control
ID obadmbiiipafnncogfkdfionggeckfia
URL Resmi https://chromewebstore.google.com/detail/autocomplete-control/obadmbiiipafnncogfkdfionggeckfia
Deskripsi Control (Disable/enforce) browser autocomplete on your need
Ukuran File 62.37 KB
Jumlah Instalasi 292
Versi Saat Ini 20.2.12.107
Terakhir Diperbarui 2020-02-18
Tanggal Publikasi 2020-02-16
Penilaian 2.33/5 Total 3 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}