Form Vault

Autosave every change you make to a form so you can easily recover lost data, and create templates to fill out forms instantly.

Τι είναι το Form Vault;

Το Form Vault είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον drewboyette, και η κύρια λειτουργία του είναι "Autosave every change you make to a form so you can easily recover lost data, and create templates to fill out forms instantly.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Form Vault

Λήψη αρχείων επέκτασης Form Vault σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Form Vault gives you the ability to save form templates and recover lost form data from any webpage. You can also fill out timesheets, job applications, and other forms that you fill out often with just the click of a button! If you’ve ever had a oh $#@*& moment and lost everything you typed into an online form, then this extension is just for you. If not, use this extension to avoid this!

Current features: 
* The ‘Undo’ button will restore autosaved form data for a particular site. Every change to a webpage form is stored locally on your chrome browser and can be restored through this function.
* The ‘Save Template’ button will create a template of current site’s form data. As long as the user has ‘sync’ enabled on their chrome browser, this data will persist offline and across different devices. Note that this button will overwrite previously saved templates.
* The ‘Restore Template’ button will retrieve the template saved to the site’s domain and fill the template data into the appropriate fields on the form. 
* The ‘Edit Templates’ button will open a new webpage with a table displaying all the user’s currently saved templates. Users can edit and delete templates from this page.
* The ‘Clear History’ button will clear all history - templates and auto-saved data. This data cannot be recovered.
* Works for all text elements, select drop-downs, radio buttons, and checkboxes.

--------------------------------------------------------------
Notice: This extension won't save any personal data. All data is either stored locally on your computer, or synced with your gmail account. This extension will also not save or recover any fields with the name 'Password' or anything similar.
Git Repo: https://github.com/drewsb/FormVault                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Form Vault Form Vault
ID lmhpmojffnpndeejifmkicggnilnlfem
Επίσημο URL https://chromewebstore.google.com/detail/form-vault/lmhpmojffnpndeejifmkicggnilnlfem
Περιγραφή Autosave every change you make to a form so you can easily recover lost data, and create templates to fill out forms instantly.
Μέγεθος Αρχείου 342 KB
Αριθμός Εγκαταστάσεων 3,756
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2022-01-12
Ημερομηνία Δημοσίευσης 2018-01-08
Αξιολόγηση 2.88/5 Συνολικά 34 Αξιολογήσεις
Προγραμματιστής drewboyette
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/drewsb/FormVault
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Form Vault",
    "description": "Autosave every change you make to a form so you can easily recover lost data, and create templates to fill out forms instantly.",
    "version": "1.1.3",
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "tabs",
        "scripting",
        "notifications",
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content_scripts\/url-parser.js",
                "content_scripts\/form-parser.js",
                "content_scripts\/data-stack.js",
                "content_scripts\/template-service.js",
                "js\/jquery.min.js",
                "content_scripts\/main.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "popup\/icon.png",
        "default_title": "Form Vault"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ]
}