summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/simple-extension/manifest.json
blob: da2cd082edb648a3caa5141199e52bc5273b786a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "name": "Simple extension",
  "version": "0.1",
  "background": {
    "scripts": ["index.js"]
  },
  "content_scripts": [{
    "matches": ["<all_urls>"],
    "css": [],
    "js": ["content-script.js"]
  }],
  "permissions": ["background", "activeTab"],
  "manifest_version": 2
}