Form Troubleshooter
Find and fix common form problems.
Cos'è Form Troubleshooter?
Form Troubleshooter è un'estensione di Chrome sviluppata da Sam Dutton, e la sua funzione principale è "Find and fix common form problems.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Form Troubleshooter
Scarica i file di estensione Form Troubleshooter 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
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code. Informazioni di Base sull'Estensione
| Nome | |
| ID | lpjhcgjbicfdoijennopbjooigfipfjh |
| URL Ufficiale | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
| Descrizione | Find and fix common form problems. |
| Dimensione del File | 409 KB |
| Conteggio Installazioni | 661 |
| Versione Corrente | 1.3.2 |
| Ultimo Aggiornamento | 2023-06-09 |
| Data di Pubblicazione | 2021-09-15 |
| Sviluppatore | Sam Dutton |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/GoogleChromeLabs/form-troubleshooter |
| URL della Pagina di Aiuto | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Form Troubleshooter",
"description": "Find and fix common form problems.",
"version": "1.3.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"lib\/content-script.js"
],
"css": [
"css\/highlight.css"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"css\/highlight.css"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "index.html",
"default_icon": {
"32": "\/images\/icons\/icon32.png",
"48": "\/images\/icons\/icon48.png",
"128": "\/images\/icons\/icon128.png"
}
},
"icons": {
"32": "\/images\/icons\/icon32.png",
"48": "\/images\/icons\/icon48.png",
"128": "\/images\/icons\/icon128.png"
}
} | |