2023-04-16 22:05:01 -04:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"minimum_chrome_version": "91",
|
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-04-16 22:05:01 -04:00
|
|
|
"icons": {
|
|
|
|
"128": "icon.png"
|
|
|
|
},
|
|
|
|
"permissions": [
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"*://*.discord.com/*",
|
|
|
|
"https://raw.githubusercontent.com/*"
|
|
|
|
],
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"run_at": "document_start",
|
2024-06-30 20:31:49 -04:00
|
|
|
"matches": [
|
|
|
|
"*://*.discord.com/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"content.js"
|
|
|
|
],
|
2024-06-22 00:49:43 -04:00
|
|
|
"all_frames": true,
|
|
|
|
"world": "ISOLATED"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"run_at": "document_start",
|
2024-06-30 20:31:49 -04:00
|
|
|
"matches": [
|
|
|
|
"*://*.discord.com/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"dist/Vencord.js"
|
|
|
|
],
|
2024-06-22 00:49:43 -04:00
|
|
|
"all_frames": true,
|
|
|
|
"world": "MAIN"
|
2023-04-16 22:05:01 -04:00
|
|
|
}
|
|
|
|
],
|
2023-10-08 21:15:43 -04:00
|
|
|
"background": {
|
2024-04-17 14:29:47 -04:00
|
|
|
"scripts": [
|
|
|
|
"background.js"
|
|
|
|
]
|
2023-10-08 21:15:43 -04:00
|
|
|
},
|
2024-04-17 14:29:47 -04:00
|
|
|
"web_accessible_resources": [
|
|
|
|
"dist/Vencord.js",
|
|
|
|
"dist/Vencord.css"
|
|
|
|
],
|
2023-04-16 22:05:01 -04:00
|
|
|
"browser_specific_settings": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "vencord-firefox@vendicated.dev",
|
2024-06-28 12:04:05 -04:00
|
|
|
"strict_min_version": "128.0"
|
2023-04-16 22:05:01 -04:00
|
|
|
}
|
|
|
|
}
|
2024-06-30 20:31:49 -04:00
|
|
|
}
|