aboutsummaryrefslogtreecommitdiff
path: root/browser
diff options
context:
space:
mode:
Diffstat (limited to 'browser')
-rw-r--r--browser/background.js48
-rw-r--r--browser/icon.pngbin0 -> 21831 bytes
-rw-r--r--browser/manifest.json (renamed from browser/manifestv3.json)15
-rw-r--r--browser/manifestv2.json25
4 files changed, 13 insertions, 75 deletions
diff --git a/browser/background.js b/browser/background.js
deleted file mode 100644
index 5c99dd8..0000000
--- a/browser/background.js
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Vencord, a modification for Discord's desktop app
- * Copyright (c) 2022 Linnea Gräf
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
-*/
-
-function setContentTypeOnStylesheets(details) {
- if (details.type === "stylesheet") {
- details.responseHeaders = details.responseHeaders.filter(it => it.name.toLowerCase() !== 'content-type');
- details.responseHeaders.push({ name: "Content-Type", value: "text/css" });
- }
- return { responseHeaders: details.responseHeaders };
-}
-
-var cspHeaders = [
- "content-security-policy",
- "content-security-policy-report-only",
-];
-
-function removeCSPHeaders(details) {
- return {
- responseHeaders: details.responseHeaders.filter(header =>
- !cspHeaders.includes(header.name.toLowerCase()))
- };
-}
-
-
-
-
-browser.webRequest.onHeadersReceived.addListener(
- setContentTypeOnStylesheets, { urls: ["https://raw.githubusercontent.com/*"] }, ["blocking", "responseHeaders"]
-);
-
-browser.webRequest.onHeadersReceived.addListener(
- removeCSPHeaders, { urls: ["https://raw.githubusercontent.com/*", "*://*.discord.com/*"] }, ["blocking", "responseHeaders"]
-);
diff --git a/browser/icon.png b/browser/icon.png
new file mode 100644
index 0000000..57349fa
--- /dev/null
+++ b/browser/icon.png
Binary files differ
diff --git a/browser/manifestv3.json b/browser/manifest.json
index d15b80a..c20770e 100644
--- a/browser/manifestv3.json
+++ b/browser/manifest.json
@@ -1,10 +1,14 @@
{
"manifest_version": 3,
+ "minimum_chrome_version": "91",
+
"name": "Vencord Web",
- "description": "Yeee",
- "version": "1.0.0",
+ "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/*",
@@ -36,5 +40,12 @@
"path": "modifyResponseHeaders.json"
}
]
+ },
+
+ "applications": {
+ "gecko": {
+ "id": "vencord-firefox@vendicated.dev",
+ "strict_min_version": "109.0"
+ }
}
}
diff --git a/browser/manifestv2.json b/browser/manifestv2.json
deleted file mode 100644
index b28b73f..0000000
--- a/browser/manifestv2.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "manifest_version": 2,
- "name": "Vencord Web",
- "description": "The Vencord Client Mod for Discord Web.",
- "version": "1.0.0",
- "author": "Vendicated",
- "homepage_url": "https://github.com/Vendicated/Vencord",
- "permissions": [
- "webRequest",
- "webRequestBlocking",
- "*://*.discord.com/*",
- "https://raw.githubusercontent.com/*"
- ],
- "content_scripts": [
- {
- "run_at": "document_start",
- "matches": ["*://*.discord.com/*"],
- "js": ["content.js"]
- }
- ],
- "web_accessible_resources": ["dist/Vencord.js", "dist/Vencord.css"],
- "background": {
- "scripts": ["background.js"]
- }
-}