Auto Fill

Auto fill input data, for web development, testing, etc.

Cos'è Auto Fill?

Auto Fill è un'estensione di Chrome sviluppata da Trần Luơng, e la sua funzione principale è "Auto fill input data, for web development, testing, etc.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto Fill

Scarica i file di estensione Auto Fill 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

                        Công cụ hỗ trợ điền các ô dữ liệu trên một trang web nào đó. Phục vụ tốt cho quá trình triển khai website cá nhân, nhỏ, hay là sử dụng để phục vụ cho việc kiểm thử website.

- Có 02 cách sử dụng:
+ Sử dụng popup của Extension để bật tắt công cụ
+ Sử dụng phím tắt (Shortcut key): Shift + r                    

Informazioni di Base sull'Estensione

Nome Auto Fill Auto Fill
ID nidekiaocgcfemogakcieomgbfadbcec
URL Ufficiale https://chromewebstore.google.com/detail/auto-fill/nidekiaocgcfemogakcieomgbfadbcec
Descrizione Auto fill input data, for web development, testing, etc.
Dimensione del File 38.36 KB
Conteggio Installazioni 139
Versione Corrente 2.1
Ultimo Aggiornamento 2019-05-24
Data di Pubblicazione 2019-05-21
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Trần Luơng
Email [email protected]
Tipo di Pagamento free
Lingue Supportate vi
manifest.json
{
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "description": "Auto fill input data, for web development, testing, etc.",
    "manifest_version": 2,
    "name": "Auto Fill",
    "icons": {
        "16": "icon\/icon.png",
        "128": "icon\/icon.png"
    },
    "browser_action": {
        "default_icon": "icon\/icon.png",
        "default_title": "Auto fill",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.1",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}