Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: chrome/test/data/extensions/api_test/content_scripts/css_l10n/manifest.json

Issue 8725019: Move another bunch of extension API tests to manifest_version 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Localize CSS scripts", 2 "name": "Localize CSS scripts",
3 "description": "Checks that messages in CSS content scripts get localized.", 3 "description": "Checks that messages in CSS content scripts get localized.",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2,
5 "background_page": "background.html", 6 "background_page": "background.html",
6 "default_locale": "en", 7 "default_locale": "en",
7 "content_scripts": [ 8 "content_scripts": [
8 { 9 {
9 "matches": ["http://*/*", "file://*/*"], 10 "matches": ["http://*/*", "file://*/*"],
10 "css": ["style.css"] 11 "css": ["style.css"]
11 } 12 }
12 ], 13 ],
13 "permissions": [ 14 "permissions": [
14 "tabs", "http://*/*", "file://*/*" 15 "tabs", "http://*/*", "file://*/*"
15 ] 16 ]
16 } 17 }
17 18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698