Vencord/browser/manifest.json
2022-10-04 00:52:50 +02:00

31 lines
641 B
JSON

{
"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"
]
}