Form Troubleshooter
Find and fix common form problems.
O que é Form Troubleshooter?
Form Troubleshooter é uma extensão do Chrome desenvolvida por Sam Dutton, e sua principal característica é "Find and fix common form problems.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Form Troubleshooter
Baixe arquivos de extensão Form Troubleshooter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.
Informações Básicas da Extensão
Nome | Form Troubleshooter |
ID | lpjhcgjbicfdoijennopbjooigfipfjh |
URL Oficial | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
Descrição | Find and fix common form problems. |
Tamanho do Arquivo | 409 KB |
Contagem de Instalações | 661 |
Versão Atual | 1.3.2 |
Última Atualização | 2023-06-09 |
Data de Publicação | 2021-09-15 |
Desenvolvedor | Sam Dutton |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/GoogleChromeLabs/form-troubleshooter |
URL da Página de Ajuda | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
Idiomas Suportados | 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" } } |