aboutsummaryrefslogtreecommitdiff
path: root/browser/manifest.json
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-04 00:52:42 +0200
committerVendicated <vendicated@riseup.net>2022-10-04 00:52:50 +0200
commitcc257533148419b1c94a1cd257e756d2688a403c (patch)
tree84affcf23ec84304efcb381626ac4d995db0ec95 /browser/manifest.json
parenta9eae106c7cc6cccbb5c3f030130d3c7b6461c3e (diff)
downloadVencord-cc257533148419b1c94a1cd257e756d2688a403c.tar.gz
Vencord-cc257533148419b1c94a1cd257e756d2688a403c.tar.bz2
Vencord-cc257533148419b1c94a1cd257e756d2688a403c.zip
feat: Experimental browser support
Diffstat (limited to 'browser/manifest.json')
-rw-r--r--browser/manifest.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/browser/manifest.json b/browser/manifest.json
new file mode 100644
index 0000000..c01bc44
--- /dev/null
+++ b/browser/manifest.json
@@ -0,0 +1,30 @@
+{
+ "manifest_version": 2,
+ "name": "Vencord Web",
+ "description": "Yeee",
+ "version": "1.0.0",
+ "author": "Vendicated",
+ "homepage_url": "https://github.com/Vendicated/Vencord",
+ "background": {
+ "scripts": [
+ "background.js"
+ ]
+ },
+ "content_scripts": [
+ {
+ "run_at": "document_start",
+ "matches": [
+ "*://*.discord.com/*"
+ ],
+ "js": [
+ "content.js"
+ ]
+ }
+ ],
+ "permissions": [
+ "*://*.discord.com/*"
+ ],
+ "web_accessible_resources": [
+ "dist/Vencord.js"
+ ]
+}