aboutsummaryrefslogtreecommitdiffhomepage
path: root/addon/manifest.json
blob: 86545057c497c33e9ad997a96ed9151a5c674ae6 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  "manifest_version": 2,
  "name": "MapInline",
  "version": "0.1.1",

  "description": "Add Interatctive Map",

  "icons": {
    "16": "icons/default-0.png",
    "32": "icons/default-1.png",
    "48": "icons/default-2.png"
  },

  "browser_action": {
    "default_title": "Map-Inline"
  },

  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/dumbymap.js",
        "scripts/leaflet.js",
        "scripts/maplibre.js",
        "scripts/openlayers.js",
        "index.js"
      ],
      "css": [
        "css/dumbymap.css"
      ]
    }
  ],

  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },

  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "contextMenus",
    "<all_urls>"
  ]
}