Skip to content

Commit

Permalink
Merge pull request #78 from SwatDoge/SwatDoge-patch-3
Browse files Browse the repository at this point in the history
Update userscript.user.js
  • Loading branch information
SwatDoge authored Oct 2, 2024
2 parents 7ace546 + 1c8919a commit de3c1bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tampermonkey/userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
// @supportURL https://discord.gg/bz8abvq
// @description Integrates the SOTT Quick KrunkScript documentation into the scripting screen.
// @author Swat
// @match https://krdocs.swatdo.ge/*
// @match https://krdocs.swatdoge.eu/*
// @match https://krunker.io/scripting.html
// @match https://krunker.io/editor.html
// @grant unsafeWindow
// @grant GM_setClipboard
// @run-at document-start
// ==/UserScript==

let link = "https://krdocs.swatdo.ge/";
let link = "https://krdocs.swatdoge.eu/";
let default_link = "https://docs.krunker.io/#/"

unsafeWindow.onload = function(){
Expand All @@ -24,7 +24,7 @@ unsafeWindow.onload = function(){
if (unsafeWindow.location.href.includes("scripting.html")){
load_scripting();
}
if (unsafeWindow.location.href.includes("krdocs.swatdo.ge")){
if (unsafeWindow.location.href.includes("krdocs.swatdoge.eu")){
load_document();
}
}
Expand Down

0 comments on commit de3c1bf

Please sign in to comment.