this repo has no description
1{ 2 "$schema": "https://json.schemastore.org/chrome-manifest", 3 "manifest_version": 2, 4 "name": "moonlight", 5 "description": "Yet another Discord mod", 6 "version": "1.3.12", 7 "permissions": [ 8 "webRequest", 9 "webRequestBlocking", 10 "scripting", 11 "webNavigation", 12 "https://*.discord.com/*", 13 "https://*.discordapp.com/*", 14 "https://moonlight-mod.github.io/*", 15 "https://api.github.com/*" 16 ], 17 "background": { 18 "scripts": ["background.js"] 19 }, 20 "content_scripts": [ 21 { 22 "js": ["index.js"], 23 "matches": ["https://*.discord.com/*", "https://*.discordapp.com/*"], 24 "run_at": "document_start", 25 "world": "MAIN" 26 } 27 ] 28}