d81302f64c
This reverts commit 97b6699afefe373d510dda5589a0754a4b380153. Vencord is dropping support for the firefox extension, so these changes are now obsolete. revert so users can still install the extension manually and enjoy the full experience
42 lines
964 B
JSON
42 lines
964 B
JSON
{
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "91",
|
|
|
|
"name": "Vencord Web",
|
|
"description": "The cutest Discord mod now in your browser",
|
|
"author": "Vendicated",
|
|
"homepage_url": "https://github.com/Vendicated/Vencord",
|
|
"icons": {
|
|
"128": "icon.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"*://*.discord.com/*",
|
|
"https://raw.githubusercontent.com/*"
|
|
],
|
|
|
|
"content_scripts": [
|
|
{
|
|
"run_at": "document_start",
|
|
"matches": ["*://*.discord.com/*"],
|
|
"js": ["content.js"],
|
|
"all_frames": true
|
|
}
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"web_accessible_resources": ["dist/Vencord.js", "dist/Vencord.css"],
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "vencord-firefox@vendicated.dev",
|
|
"strict_min_version": "91.0"
|
|
}
|
|
}
|
|
}
|