-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90aca32
commit 8bd2c0b
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
const url = new URL(window.location.href); | ||
|
||
if(url.searchParams.get('ref') == 'yri') { | ||
document.querySelector('title').textContent = 'you came from https://miyo.lol didn\'t you?'; | ||
document.querySelector("link[rel='shortcut icon']").href = "boykisser.png"; | ||
switch(url.searchParams.get('ref')) { | ||
case 'yri': | ||
document.querySelector('title').textContent = 'you came from https://miyo.lol didn\'t you?'; | ||
document.querySelector("link[rel='shortcut icon']").href = "boykisser.png"; | ||
break; | ||
case 'mistium': | ||
document.querySelector('title').textContent = 'you came from https://extensions.mistium.com didn\'t you?' | ||
break | ||
} |