FormAssistant - Save & Restore

This extension is used by web developers to make it easy to save and restore forms for use in submission testing and validation.

Was ist FormAssistant - Save & Restore?

FormAssistant - Save & Restore ist eine Chrome-Erweiterung, die von mathieuf20 entwickelt wurde, und ihr Hauptmerkmal ist "This extension is used by web developers to make it easy to save and restore forms for use in submission testing and validation.".

Erweiterungsscreenshots

screenshot

FormAssistant - Save & Restore-Erweiterungs-CRX-Datei herunterladen

Laden Sie FormAssistant - Save & Restore-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension is used by web developers to make it easy to save and restore forms for use in submission testing and validation. It has date and time template substitution capabilities built-in to help with your workflow.

It supports adding special tags to input of type textarea, text, email, search, url or date that will be replaced by date and time.

Supported tags (for now): hours, minutes, seconds, day of the month, month, full year.                    

Grundlegende Informationen zur Erweiterung

Name FormAssistant - Save & Restore FormAssistant - Save & Restore
ID eoccmgkpiljbelbbhkjpagljajmikjme
Offizielle URL https://chromewebstore.google.com/detail/formassistant-save-restor/eoccmgkpiljbelbbhkjpagljajmikjme
Beschreibung This extension is used by web developers to make it easy to save and restore forms for use in submission testing and validation.
Dateigröße 420 KB
Installationsanzahl 255
Aktuelle Version 1.3.0
Letztes Update 2020-02-07
Veröffentlichungsdatum 2020-02-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler mathieuf20
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "javascripts\/browser-polyfill.min.js",
                "javascripts\/jquery-3.3.1.min.js",
                "javascripts\/deserialize.js",
                "javascripts\/content_script.js",
                "javascripts\/mousetrap.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "name": "FormAssistant - Save & Restore",
    "version": "1.3.0",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "description": "This extension is used by web developers to make it easy to save and restore forms for use in submission testing and validation.",
    "browser_action": {
        "default_icon": "images\/48.png",
        "default_title": "FormAssistant - Save & Restore",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "manifest_version": 2
}