-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.json
90 lines (89 loc) · 3.6 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
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
{
"name": "Semantic Images",
"version": "1.0",
"description": "Adds semantic information to images. For e.g. search engines.",
"demo": "http://ontheroad.pulponair.de",
"author": {
"name": "Nikolas Hagelstein",
"link": "http://ontheroad.pulponair.de"
},
"data": {
"property_name": {
"label": "Name",
"type": "select",
"info" : "The name for this object. If the corresponding image field is empty, the tag won't be rendered. See: http://schema.org/ImageObject",
"options": [
{ "label": "Do not render", "value": 0 },
{ "label": "Use title", "value": "image/title" },
{ "label": "Use filename", "value": "image/filename" },
{ "label": "Use caption", "value": "image/caption" }
]
},
"property_caption": {
"label": "Caption",
"type": "select",
"info" : "The caption for this object. If the corresponding image field is empty, the tag won't be rendered. See: http://schema.org/ImageObject",
"options": [
{ "label": "Do not render", "value": 0 },
{ "label": "Use title", "value": "image/title" },
{ "label": "Use filename", "value": "image/filename" },
{ "label": "Use caption", "value": "image/caption" }
]
},
"property_description": {
"label": "Description",
"type": "select",
"info" : "The description for this object. If the corresponding image field is empty, the tag won't be rendered. See: http://schema.org/ImageObject",
"options": [
{ "label": "Do not render", "value": 0 },
{ "label": "Use title", "value": "image/title" },
{ "label": "Use filename", "value": "image/filename" },
{ "label": "Use caption", "value": "image/caption" }
]
},
"property_contentUrl": {
"label": "Content URL",
"type": "select",
"info" : "Actual bytes of the image object, for example the image file. See: http://schema.org/ImageObject",
"options": [
{ "label": "Do not render", "value": 0 },
{ "label": "Use content url", "value": "url" },
{ "label": "Use canoncial content url", "value": "image/canonical_url" },
{ "label": "Use tiny preset url", "value": "image/presets/tiny/url" },
{ "label": "Use small preset url", "value": "image/presets/small/url" },
{ "label": "Use medium preset url", "value": "image/presets/medium/url" },
{ "label": "Use medium large preset url", "value": "image/presets/medium_large/url" },
{ "label": "Use large preset url", "value": "image/presets/large/url" },
{ "label": "Use xlarge preset url", "value": "image/presets/xlarge/url" },
{ "label": "Use xhuge preset url", "value": "image/presets/huge/url" }
]
},
"property_thumbnailUrl": {
"label": "Thumbnail URL",
"type": "select",
"info" : "A thumbnail image relevant to the image object. See: http://schema.org/ImageObject",
"options": [
{ "label": "Do not render", "value": 0 },
{ "label": "Use tiny preset url", "value": "image/presets/tiny/url" },
{ "label": "Use small preset url", "value": "image/presets/small/url" },
{ "label": "Use medium preset url", "value": "image/presets/medium/url" }
]
},
"property_author": {
"label": "Render author",
"type": "boolean",
"info" : "The author of the image. We use the profile first/lastname. See: http://schema.org/ImageObject"
},
"property_dateCreated": {
"label": "Render date created",
"type": "boolean",
"info" : "The date on which the image was created i.e taken. See: http://schema.org/ImageObject"
},
"property_datePublished": {
"label": "Render date published",
"type": "boolean",
"info" : "The date on which the image was published. See: http://schema.org/ImageObject"
}
},
"koken_version_required": "0.2.0"
}