Vencord/browser/manifest.json

33 lines
693 B
JSON
Raw Normal View History

2022-10-03 22:52:42 +00:00
{
"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": [
2022-10-15 18:56:21 +00:00
"*://*.discord.com/*",
"webRequest",
"webRequestBlocking"
2022-10-03 22:52:42 +00:00
],
"web_accessible_resources": [
"dist/Vencord.js"
]
}