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

Side by Side Diff: client/site_tests/power_LoadTest/extension/manifest.json

Issue 2844047: Modify power_LoadTest Extension to pull in test parameters. (Closed) Base URL: ssh://gitrw.chromium.org/autotest.git
Patch Set: Address review feedback. Created 9 years, 9 months 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
OLDNEW
1 { 1 {
2 "format_version": 1, 2 "format_version": 1,
3 "id": "00023456789ABCDEF0123456789ABCDEF012CEEE", 3 "id": "00023456789ABCDEF0123456789ABCDEF012CEEE",
4 "version": "1.0", 4 "version": "2.0",
5 "name": "Power Test", 5 "name": "Power Test",
6 "browser_action": { 6 "browser_action": {
7 "default_icon": "skin/chrome_bug.png", 7 "default_icon": "skin/chrome_bug.png",
8 "default_title": "test the web with the web" 8 "default_title": "test the web with the web"
9 }, 9 },
10 "icons": { "48": "skin/chrome_bug.png", 10 "icons": { "48": "skin/chrome_bug.png",
11 "128": "skin/chrome_bug.png" }, 11 "128": "skin/chrome_bug.png" },
12 "permissions": [ 12 "permissions": [
13 "http://*/", "https://*/", "tabs" 13 "http://*/", "https://*/", "tabs"
14 ], 14 ],
15 "background_page": "background.html", 15 "background_page": "background.html",
16 "description": "GoogleTest", 16 "description": "GoogleTest",
17 "content_scripts": [ 17 "content_scripts": [
18 { 18 {
19 "matches": ["http://localhost/testparams.html"],
20 "js": ["testparams.js"]
21 },
22 {
19 "matches": ["http://*/*", "https://*/*"], 23 "matches": ["http://*/*", "https://*/*"],
20 "js": ["ct.js"], 24 "js": ["ct.js"],
21 "run_at": "document_end", 25 "run_at": "document_end",
22 "all_frames": false 26 "all_frames": false
23 } 27 }
24 ] 28 ]
25 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698