aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-10-15 20:38:32 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-10-15 20:38:32 +0800
commit9c90bd1cbdc5de5b50def0eb4cb3e65e80194af3 (patch)
tree44a0f57beb75cdca7e1ec505cf3b119407fcfd8f
parentb6e6118b0516984d36e0e380771cb544ce3f6cfd (diff)
feat: add addon folder
-rw-r--r--addon/icons/default.icobin0 -> 15406 bytes
-rw-r--r--addon/manifest.json27
2 files changed, 27 insertions, 0 deletions
diff --git a/addon/icons/default.ico b/addon/icons/default.ico
new file mode 100644
index 0000000..2ddf495
--- /dev/null
+++ b/addon/icons/default.ico
Binary files differ
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}