Vencord/browser/manifestv2.json

26 lines
679 B
JSON
Raw Normal View History

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