Index: chrome/test/data/extensions/api_test/content_scripts/css_l10n/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/content_scripts/css_l10n/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/css_l10n/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cf42ca5ac1b59b81bb304f039fe44c787b8f3255 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/content_scripts/css_l10n/manifest.json |
@@ -0,0 +1,17 @@ |
+{ |
+ "name": "Localize CSS scripts", |
+ "description": "Checks that messages in CSS content scripts get localized.", |
+ "version": "0.1", |
+ "background_page": "background.html", |
+ "default_locale": "en", |
+ "content_scripts": [ |
+ { |
+ "matches": ["http://*/*", "file://*/*"], |
+ "css": ["style.css"] |
+ } |
+ ], |
+ "permissions": [ |
+ "tabs", "http://*/*", "file://*/*" |
+ ] |
+} |
+ |