summaryrefslogtreecommitdiffstats
path: root/testing/raptor/webext/raptor/manifest.json
blob: 744c36f471b12dc6a5f3e26c42c58c84f0d83767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  "browser_specific_settings": {
    "gecko": {
      "id": "raptor@mozilla.org"
    }
  },
  "manifest_version": 2,
  "name": "Raptor",
  "version": "0.1",
  "description": "Performance measurement framework prototype",
  "background": {
    "scripts": ["auto_gen_test_config.js", "runner.js"]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.allrecipes.com/*",
        "*://*.apple.com/*",
        "*://*.amazon.com/*",
        "*://*.bing.com/*",
        "*://*.booking.com/*",
        "*://*.cnn.com/*",
        "*://*.dailymail.co.uk/*",
        "*://*.ebay.com/*",
        "*://*.ebay-kleinanzeigen.de/*",
        "*://*.espn.com/*",
        "*://*.facebook.com/*",
        "*://*.fandom.com/*",
        "*://*.google.com/*",
        "*://*.imdb.com/*",
        "*://*.imgur.com/*",
        "*://*.instagram.com/*",
        "*://*.linkedin.com/*",
        "*://*.live.com/*",
        "*://*.microsoft.com/*",
        "*://*.netflix.com/*",
        "*://*.office.com/*",
        "*://*.paypal.com/*",
        "*://*.pinterest.com/*",
        "*://*.reddit.com/*",
        "*://*.stackoverflow.com/*",
        "*://*.sina.com.cn/*",
        "*://*.tumblr.com/*",
        "*://*.twitch.tv/*",
        "*://*.twitter.com/*",
        "*://*.vice.com/*",
        "*://*.web.de/*",
        "*://*.wikia.com/*",
        "*://*.wikipedia.org/*",
        "*://*.yahoo.com/*",
        "*://*.youtube.com/*",
        "*://*.yandex.ru/*"
      ],
      "js": ["pageload.js"],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/Speedometer/index.html*",
        "*://*/StyleBench/*",
        "*://*/MotionMark/*",
        "*://*/SunSpider/*",
        "*://*/webaudio/*",
        "*://*/unity-webgl/index.html*",
        "*://*/wasm-misc/index.html*",
        "*://*/wasm-godot/index.html*",
        "*://*/assorted-dom/assorted/results.html*",
        "*://*.mozaws.net/*",
        "*://*/ARES-6/index.html*",
        "*://*/JetStream2/index.html*",
        "*://*.amazonaws.com/*"
      ],
      "js": ["benchmark.js"],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icon.png",
    "default_title": "Raptor LOADED"
  },
  "permissions": ["<all_urls>", "tabs", "storage", "alarms", "geckoProfiler"]
}