aboutsummaryrefslogtreecommitdiff
path: root/e2e/ambassador/manifest.json
blob: 9f3e0631b24a9fd229f667e969f56a52c568f1ab (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
{
  "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_end",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "clipboardRead"
  ]
}