Index: chrome/test/data/extensions/api_test/css_l10n/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/css_l10n/manifest.json b/chrome/test/data/extensions/api_test/css_l10n/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3f7d640994ebd2945cfbc560b6cf8795ef634c57 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/css_l10n/manifest.json |
@@ -0,0 +1,17 @@ |
+{ |
+ "name": "Localize CSS scripts", |
+ "description": "Checks that messages in CSS scripts get localized.", |
Nebojša Ćirić
2011/08/16 17:40:24
...CSS content scripts...
CSS scripts that belong
adriansc
2011/08/16 22:13:51
Done.
|
+ "version": "0.1", |
+ "background_page": "background.html", |
+ "default_locale": "en", |
+ "content_scripts": [ |
+ { |
+ "matches": ["http://*/*", "file://*/*"], |
+ "css": ["style.css"] |
+ } |
+ ], |
+ "permissions": [ |
+ "tabs", "http://*/*" |
+ ] |
+} |
+ |