-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcloudflare.json
101 lines (101 loc) · 3.3 KB
/
cloudflare.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "Trumpet II",
"category": "webmaster",
"description": "This app lets you put a small message at the top of your site. If the user dismisses the message by clicking on it, Trumpet will not show it again for 24 hours.",
"keywords" : [
"webmaster"
],
"version": "0.1.0",
"contributors": [
{
"name" : "Martin Reistadbakk",
"email" : "[email protected]"
}
],
"repository" : {
"type" : "git",
"url" : "https://github.com/martior/trumpet.git"
},
"main" : "./public/javascripts/trumpet.js",
"dependencies" : {
},
"licenses" : [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}],
"implements" : "AMD",
"scripts" : {
},
"config" : {
"assets" : {
"logos" : {
"200px": "./public/images/trumpet_logo-200.png",
"132px": "./public/images/trumpet_logo-132.png"
},
"detail_page" : [
"./public/images/trumpet_screenshot.png"
]
},
"payment": {},
"details": {
"Category": "Webmaster Tools",
"Language": "English",
"Restrictions": "None"
},
"interface": [
{
"id": "message",
"name": "Display text",
"description": "The text you would like displayed on your site. Leave blank to disable Trumpet.",
"type": "string"
},
{
"id": "link",
"name": "Link (premium only)",
"description": "A URL with more information. Should start with 'http://'.",
"type": "string"
},
{
"id": "linktext",
"name": "Link Text (premium only)",
"description": "The text you want to be tunred into a link. e.g. 'Read more...'.",
"type": "string"
},
{
"id": "colorbackground",
"name": "Background Color (premium only)",
"description": "The background color of the status bar.",
"type": "string"
},
{
"id": "colortext",
"name": "Text Color (premium only)",
"description": "The color of the text.",
"type": "string"
},
{
"id": "colorlink",
"name": "Link Color ",
"description": "The color of the link text",
"type": "string"
},
{
"id": "branded",
"type": "select",
"name": "Display Trumpet Logo? (premium only)",
"description": "Choose whether to buy a ticket",
"options": [
{
"label": "Yes, display the logo!",
"value": "true"
},
{
"label": "No, do not display the logo",
"value": ""
}
]
}
]
}
}