diff options
Diffstat (limited to 'browser/manifest.json')
-rw-r--r-- | browser/manifest.json | 30 |
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" + ] +} |