From 5b865e750b5e7e8307c63c6718a4c0c1d245db5e Mon Sep 17 00:00:00 2001
From: Ryan Rumbaugh <rrumbaugh@nebraska.edu>
Date: Thu, 25 Jul 2024 09:32:03 -0500
Subject: [PATCH] Firefox compatible manifest file

---
 firefox-manifest.json | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 firefox-manifest.json

diff --git a/firefox-manifest.json b/firefox-manifest.json
new file mode 100644
index 0000000..bfcee49
--- /dev/null
+++ b/firefox-manifest.json
@@ -0,0 +1,32 @@
+{
+  "manifest_version": 3,
+  "name": "XML Formatter",
+  "version": "1.0",
+  "description": "Formats and toggles XML data.",
+  "permissions": ["activeTab"],
+  "content_scripts": [
+    {
+      "matches": ["https://iga.nebraska.edu/*",
+                  "https://iga-tst.nebraska.edu/*",
+                  "https://iga-dev.nebraska.edu/*"],
+      "js": ["content.js"],
+      "css": ["styles.css"],
+      "run_at": "document_end"
+    }
+  ],
+  "background": {
+    "scripts": ["background.js"],
+    "persistent": false
+  },
+  "icons": {
+    "16": "icons/icon16.png",
+    "48": "icons/icon48.png",
+    "128": "icons/icon128.png"
+  },
+  "browser_specific_settings": {
+    "gecko": {
+      "id": "its-sec-iam@nebraska.edu",
+      "strict_min_version": "91.0"
+    }
+  }
+}
-- 
GitLab