2022-12-01 18:16:09 +00:00
|
|
|
{
|
|
|
|
"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",
|
2022-12-01 18:43:49 +00:00
|
|
|
"matches": ["*://*.discord.com/*"],
|
|
|
|
"js": ["content.js"]
|
2022-12-01 18:16:09 +00:00
|
|
|
}
|
|
|
|
],
|
2022-12-01 18:43:49 +00:00
|
|
|
"web_accessible_resources": ["dist/Vencord.js"],
|
2022-12-01 18:16:09 +00:00
|
|
|
"background": {
|
2022-12-01 18:43:49 +00:00
|
|
|
"scripts": ["background.js"]
|
2022-12-01 18:16:09 +00:00
|
|
|
}
|
|
|
|
}
|