Fill-it
Fill HTML form with fake values.
O que é Fill-it?
Fill-it é uma extensão do Chrome desenvolvida por Florian Knibbe, e sua principal característica é "Fill HTML form with fake values.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Fill-it
Baixe arquivos de extensão Fill-it 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
Fill-it is totally open source : https://github.com/FlorianKnibbe/fill-it
Fill-it is Google Chrome extension design to fill HTML form with fake values in order to saving time when it comes to fill forms. You can customize and add filter/target pattern and generated values pattern in parameters.
**WARNING** Please note that **default parameters are for French users** but you can customize all of them as you want/need.
* Target fields on : label, placeholder, name and type
* Auto fill respect attributs : min, max, minlength, maxlength and pattern
## COMMANDS ##
CTRL + DBLCLICK => Auto fill one field
or click on one field then...
CTRL + SHIFT + A => Auto fill all fields in page
CTRL + SHIFT + F => Auto fill form (restricted area) in page Informações Básicas da Extensão
| Nome | |
| ID | fdkaefddgpceppjokdiffahhjgcaflke |
| URL Oficial | https://chromewebstore.google.com/detail/fill-it/fdkaefddgpceppjokdiffahhjgcaflke |
| Descrição | Fill HTML form with fake values. |
| Tamanho do Arquivo | 70.64 KB |
| Contagem de Instalações | 281 |
| Versão Atual | 1.0.2 |
| Última Atualização | 2018-09-30 |
| Data de Publicação | 2018-09-30 |
| Desenvolvedor | Florian Knibbe |
| Tipo de Pagamento | free |
| Site da Extensão | https://github.com/FlorianKnibbe/fill-it |
| URL da Página de Ajuda | https://github.com/FlorianKnibbe/fill-it |
| Idiomas Suportados | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fill-it",
"version": "1.0.2",
"short_name": "Fillit",
"description": "Fill HTML form with fake values.",
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs"
],
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "img\/icon16.png",
"24": "img\/icon24.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"default_title": "Open source Form Filler by Florian Knibbe",
"default_popup": "popup.html"
},
"icons": {
"16": "img\/icon16.png",
"24": "img\/icon24.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"assets\/jquery.js",
"assets\/randexp.js",
"domManipulator.js"
]
}
],
"manifest_version": 2
} | |