FormData Viewer
View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields
Что такое FormData Viewer?
FormData Viewer - это расширение Chrome, разработанное https://time2hack.com, и его основная функция - "View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields".
Снимки экрана расширения
Скачать файл CRX расширения FormData Viewer
Скачайте файлы расширений FormData Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension to view the FormData of all the forms on the page Shows hidden forms and hidden fields
Основная информация о расширении
Название | FormData Viewer |
ID | mnjfjpoendmmboclknfcllimnneeiflg |
Официальный URL | https://chromewebstore.google.com/detail/formdata-viewer/mnjfjpoendmmboclknfcllimnneeiflg |
Описание | View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields |
Размер файла | 58.16 KB |
Количество установок | 287 |
Текущая Версия | 0.2 |
Последнее Обновление | 2019-10-18 |
Дата публикации | 2019-10-16 |
Разработчик | https://time2hack.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://time2hack.com/contact |
Поддерживаемые языки | 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" } } |