this repo has no description
1{ 2 "$schema": "https://json.schemastore.org/chrome-manifest", 3 "manifest_version": 3, 4 "name": "moonlight", 5 "description": "Yet another Discord mod", 6 "version": "1.3.12", 7 "permissions": ["declarativeNetRequestWithHostAccess", "webRequest", "scripting", "webNavigation"], 8 "host_permissions": [ 9 "https://moonlight-mod.github.io/*", 10 "https://api.github.com/*", 11 "https://*.discord.com/*", 12 "https://*.discordapp.com/*" 13 ], 14 "content_scripts": [ 15 { 16 "js": ["index.js"], 17 "matches": ["https://*.discord.com/*", "https://*.discordapp.com/*"], 18 "run_at": "document_start", 19 "world": "MAIN" 20 } 21 ], 22 "declarative_net_request": { 23 "rule_resources": [ 24 { 25 "id": "modifyResponseHeaders", 26 "enabled": true, 27 "path": "modifyResponseHeaders.json" 28 }, 29 { 30 "id": "blockLoading", 31 "enabled": true, 32 "path": "blockLoading.json" 33 } 34 ] 35 }, 36 "background": { 37 "service_worker": "background.js", 38 "type": "module" 39 }, 40 "web_accessible_resources": [ 41 { 42 "resources": ["index.js"], 43 "matches": ["https://*.discord.com/*", "https://*.discordapp.com/*"] 44 } 45 ] 46}