aboutsummaryrefslogtreecommitdiff
path: root/browser/manifest.json
diff options
context:
space:
mode:
authorVen <vendicated@riseup.net>2023-01-26 22:38:02 +0100
committerGitHub <noreply@github.com>2023-01-26 22:38:02 +0100
commit399305fd8a51de8f0e14d1898d9dd904c540f062 (patch)
treed3b34626c19d7af6549040648e340f1a041d30a2 /browser/manifest.json
parent0c030a3a27e4c34409143261975fb3bd0e481fcb (diff)
downloadVencord-399305fd8a51de8f0e14d1898d9dd904c540f062.tar.gz
Vencord-399305fd8a51de8f0e14d1898d9dd904c540f062.tar.bz2
Vencord-399305fd8a51de8f0e14d1898d9dd904c540f062.zip
Automatic extension publishing (#453)
Diffstat (limited to 'browser/manifest.json')
-rw-r--r--browser/manifest.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/browser/manifest.json b/browser/manifest.json
new file mode 100644
index 0000000..c20770e
--- /dev/null
+++ b/browser/manifest.json
@@ -0,0 +1,51 @@
+{
+ "manifest_version": 3,
+ "minimum_chrome_version": "91",
+
+ "name": "Vencord Web",
+ "description": "The cutest Discord mod now in your browser",
+ "author": "Vendicated",
+ "homepage_url": "https://github.com/Vendicated/Vencord",
+ "icons": {
+ "128": "icon.png"
+ },
+
+ "host_permissions": [
+ "*://*.discord.com/*",
+ "https://raw.githubusercontent.com/*"
+ ],
+
+ "permissions": ["declarativeNetRequest"],
+
+ "content_scripts": [
+ {
+ "run_at": "document_start",
+ "matches": ["*://*.discord.com/*"],
+ "js": ["content.js"]
+ }
+ ],
+
+ "web_accessible_resources": [
+ {
+ "resources": ["dist/Vencord.js", "dist/Vencord.css"],
+ "matches": ["*://*.discord.com/*"]
+ }
+ ],
+
+ "declarative_net_request": {
+ "rule_resources": [
+ {
+ "id": "modifyResponseHeaders",
+ "enabled": true,
+ "path": "modifyResponseHeaders.json"
+ }
+ ]
+ },
+
+ "applications": {
+ "gecko": {
+ "id": "vencord-firefox@vendicated.dev",
+ "strict_min_version": "109.0"
+ }
+ }
+}