diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-14 00:12:30 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-14 00:12:30 +0200 |
commit | d26196d6c52c092a8e2ef302a2aeec538ff2fe23 (patch) | |
tree | 99038bb8f2880734a158573ee2a83a5fb4f05cab /browser/userscript.meta.js | |
parent | 5fe04c5882e67cc4ac0ec458ee225b433c22590c (diff) | |
download | Vencord-d26196d6c52c092a8e2ef302a2aeec538ff2fe23.tar.gz Vencord-d26196d6c52c092a8e2ef302a2aeec538ff2fe23.tar.bz2 Vencord-d26196d6c52c092a8e2ef302a2aeec538ff2fe23.zip |
Add a UserScript build
Diffstat (limited to 'browser/userscript.meta.js')
-rw-r--r-- | browser/userscript.meta.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/browser/userscript.meta.js b/browser/userscript.meta.js new file mode 100644 index 0000000..e2a3de5 --- /dev/null +++ b/browser/userscript.meta.js @@ -0,0 +1,23 @@ +// ==UserScript== +// @name Vencord +// @description A Discord client mod - Web version +// @version %version% +// @author Vendicated (https://github.com/Vendicated) +// @namespace https://github.com/Vendicated/Vencord +// @supportURL https://github.com/Vendicated/Vencord +// @license GPL-3.0 +// @match *://*.discord.com/* +// @grant none +// @run-at document-start +// @compatible chrome Chrome + Tampermonkey or Violentmonkey +// @compatible firefox Firefox Tampermonkey +// @compatible opera Opera + Tampermonkey or Violentmonkey +// @compatible edge Edge + Tampermonkey or Violentmonkey +// @compatible safari Safari + Tampermonkey or Violentmonkey +// ==/UserScript== + +// this UserScript DOES NOT work on Firefox with Violentmonkey or Greasemonkey due to a bug that makes it impossible +// to overwrite stuff on the window on sites that use CSP. Use Tampermonkey or use a chromium based browser +// https://github.com/violentmonkey/violentmonkey/issues/997 + +// this is a compiled and minified version of Vencord. For the source code, visit the GitHub repo |