• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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}
30