aboutsummaryrefslogtreecommitdiffhomepage
path: root/addon/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'addon/manifest.json')
-rw-r--r--addon/manifest.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/addon/manifest.json b/addon/manifest.json
new file mode 100644
index 0000000..27433b3
--- /dev/null
+++ b/addon/manifest.json
@@ -0,0 +1,27 @@
1{
2 "manifest_version": 2,
3 "name": "DumbyMap",
4 "version": "1.0",
5
6 "description": "Add interatctive Map",
7
8 "icons": {
9 "48": "icons/default.ico"
10 },
11
12 "content_scripts": [
13 {
14 "matches": ["*://*.mozilla.org/*"],
15 "js": ["index.mjs"],
16 "css": [
17 "css/dumbymap.css"
18 ]
19 }
20 ],
21
22 "permissions": [
23 "activeTab",
24 "tabs",
25 "scripting"
26 ]
27}