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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
{
"app": {
"documentation": "manifest/app.html",
"example": {},
"level": "required"
},
"app.background": {
"example": {"scripts": ["background.js"]},
"level": "required"
},
"background": {
"documentation": "background_pages.html"
},
"background.persistent": {
"documentation": "event_pages.html",
"example": false,
"level": "recommended"
},
"browser_action": {
"documentation": "browserAction.html",
"example": {},
"level": "only_one"
},
"chrome_url_overrides": {
"documentation": "override.html",
"example": {}
},
"content_scripts": {
"documentation": "content_scripts.html",
"example": [{}]
},
"content_security_policy": {
"documentation": "contentSecurityPolicy.html",
"example": "policyString"
},
"default_locale": {
"documentation": "manifest/default_locale.html",
"example": "en",
"level": "recommended"
},
"description": {
"documentation": "manifest/description.html",
"example": "A plain text description",
"level": "recommended"
},
"externally_connectable": {
"documentation": "manifest/externally_connectable.html",
"example": {
"matches": ["*://*.example.com/*"]
}
},
"file_browser_handlers": {
"documentation": "fileBrowserHandler.html",
"example": []
},
"file_handlers": {
"documentation": "manifest/file_handlers.html",
"example": {}
},
"homepage_url": {
"documentation": "manifest/homepage_url.html",
"example": "http://path/to/homepage"
},
"icons": {
"documentation": "manifest/icons.html",
"example": {},
"level": "recommended"
},
"incognito": {
"documentation": "manifest/incognito.html",
"example": "spanning or split"
},
"key": {
"documentation": "manifest/key.html",
"example": "publicKey"
},
"kiosk_enabled": {
"documentation": "manifest/kiosk_enabled.html#kiosk_enabled",
"example": true
},
"kiosk_only": {
"documentation": "manifest/kiosk_enabled.html#kiosk_only",
"example": true
},
"manifest_version": {
"documentation": "manifest/manifest_version.html",
"example": 2,
"level": "required"
},
"minimum_chrome_version": {
"documentation": "manifest/minimum_chrome_version.html",
"example": "versionString"
},
"nacl_modules": {
"documentation": "manifest/nacl_modules.html",
"example": []
},
"name": {
"documentation": "manifest/name.html#name",
"example": "My {{title}}",
"level": "required"
},
"offline_enabled": {
"documentation": "manifest/offline_enabled.html",
"example": true
},
"omnibox": {
"documentation": "omnibox.html",
"example": {
"keyword": "aString"
}
},
"options_page": {
"documentation": "options.html",
"example": "aFile.html"
},
"page_action": {
"documentation": "pageAction.html",
"example": {},
"level": "only_one"
},
"permissions": {
"documentation": "declare_permissions.html",
"example": []
},
"plugins": {
"documentation": "npapi.html",
"example": []
},
"requirements": {
"documentation": "manifest/requirements.html",
"example": {}
},
"sandbox": {
"documentation": "manifest/sandbox.html",
"example": []
},
"short_name": {
"documentation": "manifest/name.html#short_name",
"example": "Short Name"
},
"theme": {
"documentation": "themes.html",
"example": {},
"level": "only_one"
},
"update_url": {
"documentation": "autoupdate.html",
"example": "http://path/to/updateInfo.xml"
},
"url_handlers": {
"documentation": "manifest/url_handlers.html",
"example": {}
},
"version": {
"documentation": "manifest/version.html",
"example": "versionString",
"level": "required"
},
"web_accessible_resources": {
"documentation": "manifest/web_accessible_resources.html",
"example": []
}
}
|