Equicord/browser/manifest.json

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2022-10-03 18:52:42 -04:00
{
2022-11-16 10:23:52 -05:00
"manifest_version": 3,
"minimum_chrome_version": "111",
2024-04-17 14:29:47 -04:00
"name": "Equicord Web",
"description": "The other cutest Discord mod now in your browser",
"author": "Thororen",
"homepage_url": "https://github.com/Equicord/Equicord",
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/*"
],
2024-04-17 14:29:47 -04:00
"permissions": [
"declarativeNetRequest"
],
2022-10-03 18:52:42 -04:00
"content_scripts": [
{
"run_at": "document_start",
2024-06-30 20:31:49 -04:00
"matches": [
"*://*.discord.com/*"
],
"js": [
"content.js"
],
"all_frames": true,
"world": "ISOLATED"
},
{
"run_at": "document_start",
2024-06-30 20:31:49 -04:00
"matches": [
"*://*.discord.com/*"
],
"js": [
"dist/Vencord.js"
],
"all_frames": true,
"world": "MAIN"
2022-10-03 18:52:42 -04:00
}
],
"web_accessible_resources": [
2022-11-16 10:23:52 -05:00
{
2024-04-17 14:29:47 -04:00
"resources": [
"dist/*",
"third-party/*"
],
"matches": [
"*://*.discord.com/*"
]
2022-11-16 10:23:52 -05:00
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "modifyResponseHeaders",
"enabled": true,
"path": "modifyResponseHeaders.json"
}
]
}
2024-06-30 20:31:49 -04:00
}