https://github.com/charles-dr/autofill
Chrome extension to auto-fill the billing information on checkout form
https://github.com/charles-dr/autofill
Last synced: about 2 months ago
JSON representation
Chrome extension to auto-fill the billing information on checkout form
- Host: GitHub
- URL: https://github.com/charles-dr/autofill
- Owner: charles-dr
- Created: 2020-04-01T20:57:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-09T03:18:11.000Z (about 5 years ago)
- Last Synced: 2025-02-09T23:37:23.352Z (3 months ago)
- Language: JavaScript
- Size: 1.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Autofill Extension
- authorize user using api
- fill the checkout form automatically
- save billing information## data structure
```json
{
"data": {
"mode": "1",
"profile": {},
"profiles": [],
"settings": {},
"activation": {
"success": true,
"key": "81610-...",
"activation_token": "BZsN...",
"activation": {
"hwid": "d520c7a8-...",
"device_name": "LAPTOP-...",
"activated_at": 1585872379,
"active": true
},
"user": {
"id": 127622,
"discord_username": "xxxx#0000",
"discord_id": "662509114353516554",
"avatar_url": "https://cdn.discordapp.com/avatars/...png"
}
},
"options": {
"autoCheckout": "false"
},
"customs": [
{"keyword": "keyword1", "value": "value1 }
]
}
}
```