aboutsummaryrefslogtreecommitdiffhomepage
path: root/addon/manifest.json
blob: 27433b34e5dc6ee809cb744417466bb9359eb5fe (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
{
  "manifest_version": 2,
  "name": "DumbyMap",
  "version": "1.0",

  "description": "Add interatctive Map",

  "icons": {
    "48": "icons/default.ico"
  },

  "content_scripts": [
    {
      "matches": ["*://*.mozilla.org/*"],
      "js": ["index.mjs"],
      "css": [
        "css/dumbymap.css"
      ]
    }
  ],

  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ]
}