OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "required": [ | |
3 { | |
4 "documentation": "manifest_name.html", | |
5 "example": "My Extension", | |
6 "name": "name" | |
7 }, | |
not at google - send to devlin
2013/04/27 01:54:02
I actually think we'll only want one of these file
jshumway
2013/05/03 03:44:39
Done. Would you prefer a different way to change t
| |
8 { | |
9 "documentation": "manifest_version.html", | |
10 "example": "versionString", | |
11 "name": "version" | |
12 }, | |
13 { | |
14 "documentation": "manifest_manifest_version.html", | |
15 "example": 2, | |
16 "name": "manifest_version" | |
17 } | |
18 ], | |
19 "recommended": [ | |
20 { | |
21 "documentation": "manifest_description.html", | |
22 "example": "A plain text description", | |
23 "name": "description" | |
24 }, | |
25 { | |
26 "documentation": "manifest_icons.html", | |
27 "example": {}, | |
28 "name": "icons" | |
29 }, | |
30 { | |
31 "documentation": "manifest_default_locale.html", | |
32 "example": "en", | |
33 "name": "default_locale" | |
34 } | |
35 ], | |
36 "only_one": [ | |
37 { | |
38 "documentation": "browserAction.html", | |
39 "example": {}, | |
40 "name": "browser_action" | |
41 }, | |
42 { | |
43 "documentation": "pageAction.html", | |
44 "example": {}, | |
45 "name": "page_action" | |
46 }, | |
47 { | |
48 "documentation": "themes.html", | |
49 "example": {}, | |
50 "name": "theme" | |
51 }, | |
52 { | |
53 "documentation": "manifest_app.html", | |
54 "example": {}, | |
55 "name": "app" | |
56 } | |
57 ], | |
58 "optional": [ | |
59 { | |
60 "documentation": "event_pages.html", | |
61 "example": { | |
62 "persistent": false | |
63 }, | |
64 "name": "background" | |
65 }, | |
66 { | |
67 "documentation": "background_pages.html", | |
68 "example": { | |
69 "persistent": true | |
70 }, | |
71 "name": "background" | |
72 }, | |
73 { | |
74 "documentation": "override.html", | |
75 "example": {}, | |
76 "name": "chrome_url_overrides" | |
77 }, | |
78 { | |
79 "documentation": "content_scripts.html", | |
80 "example": {}, | |
81 "name": "content_scripts" | |
82 }, | |
83 { | |
84 "documentation": "contentSecurityPolicy.html", | |
85 "example": "policyString", | |
86 "name": "content_security_policy" | |
87 }, | |
88 { | |
89 "documentation": "fileBrowserHandler.html", | |
90 "example": [], | |
91 "name": "file_browser_handlers" | |
92 }, | |
93 { | |
94 "documentation": "manifest_homepage_url.html", | |
95 "example": "http://path/to/homepage", | |
96 "name": "homepage_url" | |
97 }, | |
98 { | |
99 "documentation": "manifest_incognito.html", | |
100 "example": "spanning or split", | |
101 "name": "incognito" | |
102 }, | |
103 { | |
104 "documentation": "manifest_key.html", | |
105 "example": "publicKey", | |
106 "name": "key" | |
107 }, | |
108 { | |
109 "documentation": "manifest_minimum_chrome_version.html", | |
110 "example": "versionString", | |
111 "name": "minimum_chrome_version" | |
112 }, | |
113 { | |
114 "documentation": "manifest_nacl_modules.html", | |
115 "example": [], | |
116 "name": "nacl_modules" | |
117 }, | |
118 { | |
119 "documentation": "manifest_offline_enabled.html", | |
120 "example": true, | |
121 "name": "offline_enabled" | |
122 }, | |
123 { | |
124 "documentation": "omnibox.html", | |
125 "example": { | |
126 "keyword": "aString" | |
127 }, | |
128 "name": "omnibox" | |
129 }, | |
130 { | |
131 "documentation": "options.html", | |
132 "example": "aFile.html", | |
133 "name": "options_page" | |
134 }, | |
135 { | |
136 "documentation": "declare_permissions.html", | |
137 "example": [], | |
138 "name": "permissions" | |
139 }, | |
140 { | |
141 "documentation": "npapi.html", | |
142 "example": [], | |
143 "name": "plugins" | |
144 }, | |
145 { | |
146 "documentation": "manifest_requirements.html", | |
147 "example": {}, | |
148 "name": "requirements" | |
149 }, | |
150 { | |
151 "documentation": "autoupdate.html", | |
152 "example": "http://path/to/updateInfo.xml", | |
153 "name": "update_url" | |
154 }, | |
155 { | |
156 "documentation": "manifest_web_accessible_resources.html", | |
157 "example": [], | |
158 "name": "web_accessible_resources" | |
159 }, | |
160 { | |
161 "documentation": "manifest_sandbox.html", | |
162 "example": [], | |
163 "name": "sandbox" | |
164 } | |
165 ] | |
166 } | |
OLD | NEW |