FormData Viewer

View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields

Was ist FormData Viewer?

FormData Viewer ist eine Chrome-Erweiterung, die von https://time2hack.com entwickelt wurde, und ihr Hauptmerkmal ist "View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields".

Erweiterungsscreenshots

screenshot

FormData Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie FormData Viewer-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

                        Extension to view the FormData of all the forms on the page

Shows hidden forms and hidden fields                    

Grundlegende Informationen zur Erweiterung

Name FormData Viewer FormData Viewer
ID mnjfjpoendmmboclknfcllimnneeiflg
Offizielle URL https://chromewebstore.google.com/detail/formdata-viewer/mnjfjpoendmmboclknfcllimnneeiflg
Beschreibung View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields
Dateigröße 58.16 KB
Installationsanzahl 287
Aktuelle Version 0.2
Letztes Update 2019-10-18
Veröffentlichungsdatum 2019-10-16
Entwickler https://time2hack.com
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://time2hack.com/contact
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FormData Viewer",
    "description": "View HTML FormData of all the forms on the page quickly with this utility.\n\nShows hidden forms and hidden fields",
    "version": "0.2",
    "homepage_url": "https:\/\/time2hack.com\/extensions\/formdata-viewer",
    "browser_action": {
        "default_icon": "icons\/icon-switch-128.png",
        "default_title": "FormData Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon-switch-16.png",
        "48": "icons\/icon-switch-48.png",
        "128": "icons\/icon-switch-128.png"
    }
}