Form History Control (II)

Manage form history entries (search, view, edit, cleanup, export/import) and easy formfiller.

Τι είναι το Form History Control (II);

Το Form History Control (II) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stephan, και η κύρια λειτουργία του είναι "Manage form history entries (search, view, edit, cleanup, export/import) and easy formfiller.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Form History Control (II)

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

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

                        Auto-save text entered in any form while typing to allow fast recovery when disaster strikes.

Manage form history entries (search, edit, cleanup, export/import) and easy text formfiller.                    

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

Όνομα Form History Control (II) Form History Control (II)
ID lpcccgcdjibejkgiaeijbmkpbnbkglkb
Επίσημο URL https://chromewebstore.google.com/detail/form-history-control-ii/lpcccgcdjibejkgiaeijbmkpbnbkglkb
Περιγραφή Manage form history entries (search, view, edit, cleanup, export/import) and easy formfiller.
Μέγεθος Αρχείου 539 KB
Αριθμός Εγκαταστάσεων 4,685
Τρέχουσα Έκδοση 2.5.6.1
Τελευταία Ενημέρωση 2021-04-14
Ημερομηνία Δημοσίευσης 2020-01-10
Αξιολόγηση 4.17/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής Stephan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://stephanmahieu.github.io/fhc-home/
Διεύθυνση URL της Σελίδας Βοήθειας https://stephanmahieu.github.io/fhc-home/Manual/KnownIssues/#reporting-new-issues
URL της Σελίδας Πολιτικής Απορρήτου https://stephanmahieu.github.io/fhc-home/privacy
Υποστηριζόμενες Γλώσσες de,en,nl,el,ru,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "FormHistCtrl",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.5.6.1",
    "author": "Stephan Mahieu",
    "default_locale": "en",
    "optional_permissions": [
        "downloads"
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "storage",
        "alarms",
        "clipboardWrite"
    ],
    "icons": {
        "16": "theme\/icons\/fhc-16.png",
        "32": "theme\/icons\/fhc-32.png",
        "48": "theme\/icons\/fhc-48.png",
        "64": "theme\/icons\/fhc-64.png",
        "128": "theme\/icons\/fhc-128.png"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "popup\/options\/options.html"
    },
    "background": {
        "scripts": [
            "common\/browser-polyfill.min.js",
            "common\/DbConst.js",
            "common\/CleanupConst.js",
            "common\/WindowUtil.js",
            "common\/OptionsUtil.js",
            "common\/DateUtil.js",
            "common\/MiscUtil.js",
            "background\/receiveFormData.js",
            "background\/contextmenu.js",
            "background\/applicationIcon.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "common\/browser-polyfill.min.js",
                "common\/purify.js",
                "content\/collectFormData.js",
                "content\/showFormData.js",
                "content\/auto-complete.js",
                "content\/add-auto-complete.js"
            ],
            "css": [
                "content\/auto-complete.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "theme\/icons\/fhc-128.png",
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/tableview\/popup-small.html"
    },
    "commands": {
        "open_fhc": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Open the main FHC dialog"
        },
        "toggle_display_fields": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Show\/hide formfields on the current page"
        },
        "fill_recent": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Fill fields with most recent used entries"
        },
        "fill_often": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Fill fields with most often used entries"
        }
    }
}