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

Side by Side Diff: chrome/test/data/extensions/api_test/page_action/hash_change/manifest.json

Issue 8763008: Move yet another block of 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 "background_page": "background.html", 2 "background_page": "background.html",
3 "content_scripts": [ { 3 "content_scripts": [ {
4 "js": [ "script.js" ], 4 "js": [ "script.js" ],
5 "matches": [ "http://*/*", "https://*/*" ] 5 "matches": [ "http://*/*", "https://*/*" ]
6 } ], 6 } ],
7 "description": "Test url changes with hash-code", 7 "description": "Test url changes with hash-code",
8 "name": "Hash-code changes", 8 "name": "Hash-code changes",
9 "page_action": { 9 "page_action": {
10 "default_icon": "icon.png", 10 "default_icon": "icon.png",
11 "default_title": "Page action" 11 "default_title": "Page action"
12 }, 12 },
13 "permissions": [ "tabs", "http://*/*", "https://*/*" ], 13 "permissions": [ "tabs", "http://*/*", "https://*/*" ],
14 "manifest_version": 2,
14 "version": "1.0" 15 "version": "1.0"
15 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698