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

Side by Side Diff: Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/extension/manifest.json

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name": "PerfTracker extension",
3 "version": "1.0.0.0",
4 "description": "Chromium PerfTracker Extension.",
5 "background_page": "background.html",
6 "content_scripts": [
7 { "matches": ["file:///*startbenchmark.html"],
8 "js": ["start.js"],
9 "run_at": "document_start"
10 },
11 { "matches": ["http://*/*"],
12 "js": ["script.js"],
13 "run_at": "document_start"
14 }
15 ],
16 "permissions": [
17 "cookies",
18 "experimental",
19 "tabs",
20 "https://*/*",
21 "http://*/*"
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698