-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.json
55 lines (55 loc) · 1.5 KB
/
install.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "http://json.schemastore.org/install",
"resources": {
"head": [
{
"type": "script",
"src": "./build/index.js"
}
]
},
"dns": [
{
"type": "TXT",
"content": "Managed TXT Record",
"name": "Disposable email blocker by tomba.io",
"ttl": 120
}
],
"preview": {
"handlers": [
{
"options": ["_default"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
}
]
},
"options": {
"properties": {
"disposable_message": {
"title": "Disposable Error Message",
"description": "This message displays on the input if the email is Disposable.",
"type": "string",
"order": 1,
"default": "Abuses, strongly encourage you to stop using disposable email."
},
"webmail_message": {
"title": "Webmail Error Message",
"description": "This message displays on the input if the email is Webmail.",
"type": "string",
"order": 1,
"default": "Warning, You can create an account with this email address, but we strongly encourage you to use a professional email address."
},
"webmail_enabled": {
"title": "Enabled",
"type": "boolean",
"default": false,
"order": 0
}
},
"help": {
"type": "help",
"helpvalue": "<hr>Learn more about <a href='https://github.com/tomba-io/cloudflare-disposable-email-blocker'>cloudflare disposable email blocker</a> Docs."
}
}
}