Add Firefox extension build (#277)

This commit is contained in:
Roman / Linnea Gräf 2022-12-01 19:16:09 +01:00 committed by GitHub
parent 734054ff68
commit 0ff6d3dd41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 140 additions and 19 deletions

33
browser/manifestv2.json Normal file
View file

@ -0,0 +1,33 @@
{
"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"
],
"background": {
"scripts": [
"background.js"
]
}
}