FormData Viewer

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

What is FormData Viewer?

FormData Viewer is a Chrome extension developed by https://time2hack.com, and its main feature is "View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields".

Extension Screenshots

screenshot

Download FormData Viewer Extension CRX File

Download FormData Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Shows hidden forms and hidden fields                    

Extension Basic Information

Name FormData Viewer FormData Viewer
ID mnjfjpoendmmboclknfcllimnneeiflg
Official URL https://chromewebstore.google.com/detail/formdata-viewer/mnjfjpoendmmboclknfcllimnneeiflg
Description View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields
File Size 58.16 KB
Installation Count 287
Current Version 0.2
Last Updated 2019-10-18
Publish Date 2019-10-16
Developer https://time2hack.com
Email [email protected]
Payment Type free
Help Page URL https://time2hack.com/contact
Supported Languages 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"
    }
}