Autofill Checker

Check what the chrome autofill actually filled

Apa itu Autofill Checker?

Autofill Checker adalah ekstensi Chrome yang dikembangkan oleh https://bramas.fr, dan fitur utamanya adalah "Check what the chrome autofill actually filled".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Autofill Checker

Unduh file ekstensi Autofill Checker 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

                                            

Informasi Dasar Ekstensi

Nama Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
URL Resmi https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
Deskripsi Check what the chrome autofill actually filled
Ukuran File 15.19 KB
Jumlah Instalasi 143
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-01-07
Tanggal Publikasi 2017-01-07
Penilaian 3.67/5 Total 3 Penilaian
Pengembang https://bramas.fr
Tipe Pembayaran free
Situs Ekstensi https://github.com/Bramas/autofill-checker
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autofill Checker",
    "description": "Check what the chrome autofill actually filled",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "background"
    ],
    "icons": {
        "192": "icon.png"
    }
}