-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
40 lines (40 loc) · 1.04 KB
/
plugin.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
{
"version": "1.3.0",
"title": "Reply by email",
"description": "Let readers reply to your blog posts using their default email app.",
"fields": [
{
"field": "params.reply_by_email_address",
"label": "Reply by email",
"placeholder": "ada@lovelace.co.uk"
},
{
"field": "params.reply_by_email_link_text",
"label": "Link text",
"placeholder": "Reply by email"
},
{
"field": "params.reply_by_email_subject_prefix",
"label": "Subject line prefix",
"placeholder": "Re: "
},
{
"field": "params.reply_by_email_show_title",
"label": "Show title in subject line",
"type": "boolean"
},
{
"field": "params.reply_by_email_show_plain",
"label": "Show body in subject line (when title is missing)",
"type": "boolean"
},
{
"field": "params.reply_by_email_enable_obfuscation",
"label": "Obfuscate email address (to mitigate scraping)",
"type": "boolean"
}
],
"includes": [
"reply-by-email-head.html"
]
}