aboutsummaryrefslogtreecommitdiff
path: root/browser/manifestv2.json
blob: a6feada7ecb5568de2c194db06f576db20472fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
    "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
        }
    ],

    "web_accessible_resources": ["dist/*", "third-party/*"],

    "browser_specific_settings": {
        "gecko": {
            "id": "vencord-firefox@vendicated.dev",
            "strict_min_version": "91.0"
        }
    }
}