Vencord/browser/manifest.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2022-10-03 18:52:42 -04:00
{
2022-11-16 10:23:52 -05:00
"manifest_version": 3,
2023-01-26 16:38:02 -05:00
"minimum_chrome_version": "91",
2022-10-03 18:52:42 -04:00
"name": "Vencord Web",
2023-01-26 16:38:02 -05:00
"description": "The cutest Discord mod now in your browser",
2022-10-03 18:52:42 -04:00
"author": "Vendicated",
"homepage_url": "https://github.com/Vendicated/Vencord",
2023-01-26 16:38:02 -05:00
"icons": {
"128": "icon.png"
},
2022-11-16 10:23:52 -05:00
"host_permissions": [
"*://*.discord.com/*",
"https://raw.githubusercontent.com/*"
],
"permissions": ["declarativeNetRequest"],
2022-10-03 18:52:42 -04:00
"content_scripts": [
{
"run_at": "document_start",
2022-11-16 10:23:52 -05:00
"matches": ["*://*.discord.com/*"],
"js": ["content.js"],
"all_frames": true,
"world": "ISOLATED"
},
{
"run_at": "document_start",
"matches": ["*://*.discord.com/*"],
"js": ["dist/Vencord.js"],
"all_frames": true,
"world": "MAIN"
2022-10-03 18:52:42 -04:00
}
],
2022-11-16 10:23:52 -05:00
2022-10-03 18:52:42 -04:00
"web_accessible_resources": [
2022-11-16 10:23:52 -05:00
{
"resources": ["dist/*", "third-party/*"],
2022-11-16 10:23:52 -05:00
"matches": ["*://*.discord.com/*"]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "modifyResponseHeaders",
"enabled": true,
"path": "modifyResponseHeaders.json"
}
]
}
2022-10-03 18:52:42 -04:00
}