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

Side by Side Diff: chrome/test/data/extensions/browsertest/crash_25562/manifest.json

Issue 8784009: Update more extension manifests 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://*/*" ] 5 "matches": [ "http://*/*" ]
6 } ], 6 } ],
7 "description": "A page action with incorrect icon specification", 7 "description": "A page action with incorrect icon specification",
8 "name": "Test extension", 8 "name": "Test extension",
9 "page_actions": [ { 9 "page_actions": [ {
10 "icon": "chrome-16.png", 10 "icon": "chrome-16.png",
11 "id": "TestId", 11 "id": "TestId",
12 "name": "Page action name", 12 "name": "Page action name",
13 "tooltip": "Page action tooltip" 13 "tooltip": "Page action tooltip"
14 } ], 14 } ],
15 "permissions": [ "http://*/*" ], 15 "permissions": [ "http://*/*" ],
16 "manifest_version": 2,
16 "version": "1.0" 17 "version": "1.0"
17 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698