Auto Fill

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

Hvad er Auto Fill?

Auto Fill er en Chrome-udvidelse udviklet af Trần Luơng, og dens hovedfunktion er "Auto fill input data, for web development, testing, etc.".

Udvidelsesskærmbilleder

screenshot

Download Auto Fill-udvidelses-CRX-fil

Download Auto Fill-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Fill Auto Fill
ID nidekiaocgcfemogakcieomgbfadbcec
Officiel URL https://chromewebstore.google.com/detail/auto-fill/nidekiaocgcfemogakcieomgbfadbcec
Beskrivelse Auto fill input data, for web development, testing, etc.
Filstørrelse 38.36 KB
Antal Installationer 139
Nuværende Version 2.1
Senest Opdateret 2019-05-24
Udgivelsesdato 2019-05-21
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Trần Luơng
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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'"
}