summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/dummy/manifest.json
blob: f1f9b93a91ebe111d1e17e3efad207aa1cadc876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "manifest_version": 2,
  "name": "Dummy",
  "version": "1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "dummy@tests.mozilla.org"
    }
  },
  "description": "Doesn't do anything.",
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["dummy.js"]
    }
  ]
}