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

Side by Side Diff: tools/page_cycler/webpagereplay/extension/manifest.json

Issue 9956045: Add Web Page Replay test to page cycler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement review suggestions. Created 8 years, 8 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 {
tonyg 2012/04/17 11:04:45 Copyright necessary?
slamm_google 2012/04/17 20:47:16 I thought JSON did not allow comments. Either way,
2 "name": "Chromium Page Cycler with Web Page Replay.",
3 "version": "1.0.0.0",
4 "description": "Chromium Page Cycler with Web Page Replay.",
5 "background_page": "background.html",
6 "content_scripts": [
7 { "matches": ["file:///*/start.html*"],
8 "js": ["start.js"],
9 "run_at": "document_idle"
10 },
11 { "matches": ["http://*/*", "https://*/*"],
12 "js": ["content.js"],
13 "run_at": "document_start"
14 }
15 ],
16 "permissions": [
17 "browsingData",
18 "cookies",
19 "experimental",
20 "tabs",
21 "<all_urls>"
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698