aboutsummaryrefslogtreecommitdiff
path: root/e2e/ambassador/manifest.json
blob: d2253f6df01aac26433350afb5bda046c2772333 (plain) (blame)
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
{
  "manifest_version": 2,
  "name": "ambassador",
  "description": "WebExtension test helper",
  "version": "0.1",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [ "<all_urls>" ],
      "js": [ "build/content.js" ],
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "clipboardRead",
    "activeTab"
  ]
}