Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-a/deep-autofill-chrome-extension
✒️ Auto fill out forms done right.
https://github.com/s-a/deep-autofill-chrome-extension
automation chrome-extension fill google testing testing-tools
Last synced: about 3 hours ago
JSON representation
✒️ Auto fill out forms done right.
- Host: GitHub
- URL: https://github.com/s-a/deep-autofill-chrome-extension
- Owner: s-a
- License: other
- Created: 2017-03-04T11:12:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-20T01:35:44.000Z (almost 5 years ago)
- Last Synced: 2024-04-14T22:49:08.000Z (7 months ago)
- Topics: automation, chrome-extension, fill, google, testing, testing-tools
- Language: JavaScript
- Homepage: https://chrome.google.com/webstore/detail/deep-auto-fill-chrome/dcanhnkbelfogjbcifegdkgecfammhnk
- Size: 13.6 MB
- Stars: 119
- Watchers: 7
- Forks: 33
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Deep Autofill Chrome Extension
[![google webstore version](https://img.shields.io/chrome-web-store/v/dcanhnkbelfogjbcifegdkgecfammhnk.svg)](https://chrome.google.com/webstore/detail/deep-auto-fill-chrome/dcanhnkbelfogjbcifegdkgecfammhnk)
[![google webstore users](https://img.shields.io/chrome-web-store/d/dcanhnkbelfogjbcifegdkgecfammhnk.svg?maxAge=2592000)](https://chrome.google.com/webstore/detail/deep-auto-fill-chrome/dcanhnkbelfogjbcifegdkgecfammhnk)This extension is using faker.js to fill any enabled input element on HTML forms. You can use a `monkey` random mode or define presets in form of `JSON` data in the extension' s options area.
## Installation
[![chrome.google.com/webstore](ChromeWebStore_Badge_v2_206x58.png)](https://chrome.google.com/webstore/detail/deep-auto-fill-chrome/dcanhnkbelfogjbcifegdkgecfammhnk)
## Demo
![demo](demo.gif)
## Custom fill settings example
A preset contains an array of setup objects. An example would look like this:
```javascript
{
"Deep Auto Fill Chrome Demo" : { // menu item title
"randomLocale" : "de", // reserver for future use
"fields" : [ // array of input elements
{
"selector" : "#textbox2", // a valid jQuery selector. Check your dev tools console to see any errors.
"random": " {{name.lastName}}, {{name.firstName}} {{name.suffix}}" // randomized faker values described in some form of template language
},
{
"selector" : "input[name=textbox1]",
"static" : "A static value" // a static string value. Usefull if you always want the same email address.
},
{
"selector" : "#textbox4"
}
]
}
}
```Random values can be equiped with a [faker.js namespaced expression](https://github.com/marak/Faker.js/#api-methods).
If no `static` or `random` value was defined for a field, the extension will guess a cool random value for the input element.
Each `Array` element will be displayed in the browser` s context menu in form of sub or nested context menu item.
This is my first extension for Google Chrome. So the code can be written better for shure. Feedback and pull requests are very welcome.
## License
The MIT License (MIT)
Copyright (c) 2017 Stephan Ahlf