Index: chrome/test/data/extensions/api_test/i18nUpdate/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/i18nUpdate/manifest.json b/chrome/test/data/extensions/api_test/i18nUpdate/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..34dceccdb1c45862ee9daa2203c369bf3d095a80 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/i18nUpdate/manifest.json |
@@ -0,0 +1,12 @@ |
+{ |
+ "name" : "i18n Message Test", |
Yoyo Zhou
2013/03/08 22:17:50
nit: no space before :
Patrick Riordan
2013/03/11 17:32:42
Done.
|
+ "version" : "1.0", |
+ "content_scripts" : [ |
+ { |
+ "matches" : [ "<all_urls>" ], |
Yoyo Zhou
2013/03/08 22:17:50
nit: you don't need to buffer the contents of [] w
Patrick Riordan
2013/03/11 17:32:42
Done.
|
+ "js" : ["contentscript.js"] |
+ } |
+ ], |
+ "default_locale": "en", |
+ "manifest_version": 2 |
+} |