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 160443004: Remove web page replay based pyauto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 {
5 "manifest_version": 2,
6 "name": "Chromium Page Cycler with Web Page Replay.",
7 "version": "1.0.0.0",
8 "description": "Chromium Page Cycler with Web Page Replay.",
9 "background": {
10 "page": "background.html"
11 },
12 "content_scripts": [
13 { "matches": ["file:///*/start.html*"],
14 "js": ["start.js"],
15 "run_at": "document_idle"
16 },
17 { "matches": ["http://*/*", "https://*/*"],
18 "js": ["content.js"],
19 "run_at": "document_start"
20 }
21 ],
22 "permissions": [
23 "browsingData",
24 "cookies",
25 "experimental",
26 "tabs",
27 "<all_urls>"
28 ]
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698