Form Inspector
Inspect, modify, and test live forms with ease
Cos'è Form Inspector?
Form Inspector è un'estensione di Chrome sviluppata da Kinman Covey, e la sua funzione principale è "Inspect, modify, and test live forms with ease".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Form Inspector
Scarica i file di estensione Form Inspector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Easily inspect, debug, and test live forms on any website. Form inspector allows you to: + Modify input values (including hidden inputs) + Submit forms straight from the extension + A testing mode that automatically fills in form inputs when opening the extension + Custom default test values for quick testing + Honeypot avoidance Test mode makes it easier than ever to perform test submissions on forms. 1. Provide default input values in the Test mode options 2. Activate Test mode by clicking the checkbox 3. Open the extension on any page to autofill forms with your default values 4. Click submit. No more repetitive typing!
Informazioni di Base sull'Estensione
Nome | Form Inspector |
ID | ngbpjbijlmghjooeejfjfmgjfmlkfpbg |
URL Ufficiale | https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg |
Descrizione | Inspect, modify, and test live forms with ease |
Dimensione del File | 14.67 KB |
Conteggio Installazioni | 419 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2018-04-24 |
Data di Pubblicazione | 2018-04-23 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Kinman Covey |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kin5/form-inspector |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Form Inspector", "version": "1.1", "description": "Inspect, modify, and test live forms with ease", "manifest_version": 2, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |