AutoFill Forms

One-click form filler that supports multiple profiles and regular expression rules

O que é AutoFill Forms?

AutoFill Forms é uma extensão do Chrome desenvolvida por tlintspr, e sua principal característica é "One-click form filler that supports multiple profiles and regular expression rules".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AutoFill Forms

Baixe arquivos de extensão AutoFill Forms no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        The "AutoFill Forms" extension is a user-friendly tool for automatically filling web forms, supporting multiple profiles.

Features:
1. Easily create or update profiles by detecting user-inserted data in filled forms.
   - This feature simplifies the process of creating multiple profiles or updating stored data.

2. Generate random strings using Regular Expressions.
   - Randomly fill password fields or generate new security question passphrases.

3. Request the extension to generate a random password, conveniently stored on your clipboard.

4. Manage multiple profiles.
   - Duplicate or modify existing profiles on the options page.

5. Import and export preferences.

6. Locate element positions based on their physical location within the form.

7. Supports both dark and light themes.

Notes:
Your profile data is securely stored in your browser's profile directory, with no backup created by the extension for security reasons.

--- Changes (0.3.0)
1. The extension now operates in event background page mode, consuming no resources when not in use.
2. The extension is enhanced to fill forms that don't perfectly match the predefined fields.

--- Changes (0.3.2)
1. Resolved the issue where multi-line text was not being inserted from the context menu.                    

Informações Básicas da Extensão

Nome AutoFill Forms AutoFill Forms
ID focmhibpdifbdjacabpgnifhdalgfogg
URL Oficial https://chromewebstore.google.com/detail/autofill-forms/focmhibpdifbdjacabpgnifhdalgfogg
Descrição One-click form filler that supports multiple profiles and regular expression rules
Tamanho do Arquivo 85.63 KB
Contagem de Instalações 47,253
Versão Atual 0.4.3
Última Atualização 2023-07-06
Data de Publicação 2017-03-14
Classificação 3.33/5 Total de 48 Avaliações
Desenvolvedor tlintspr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://webextension.org/listing/autofill-forms.html
URL da Página de Ajuda https://webextension.org/listing/autofill-forms.html
Idiomas Suportados de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutoFill Forms",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.4.3",
    "manifest_version": 3,
    "permissions": [
        "scripting",
        "storage",
        "activeTab",
        "notifications",
        "contextMenus"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_popup": "data\/popup\/index.html"
    },
    "background": {
        "service_worker": "bg\/worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/autofill-forms.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "commands": {
        "_execute_action": [],
        "activate": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            },
            "description": "Activate extension"
        }
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    }
}