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

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: Ready for review. 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 {
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_end"
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