1
Fork 0

e926: initial version

This commit is contained in:
Conduitry 2020-04-19 09:24:42 -04:00
parent 04a33b1b43
commit 0688931c39
2 changed files with 12 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# Userscripts
* [e621 thing](https://chor.date/e621.user.js) - A script to make browsing e621.net while not signed in more convenient, and to work around the global blacklist forced on anonymous users.
* [e926 thing](https://chor.date/e926.user.js) - A script to redirect you from e926.net to e621.net.
* [TV Tropes thing](https://chor.date/tvtropes.user.js) - A script to remove the "This is page #x you have viewed this month without ads" banner.
## License

11
src/e926.user.js Normal file
View file

@ -0,0 +1,11 @@
// ==UserScript==
// @name e926 thing
// @namespace https://chor.date
// @description A script to redirect you from e926.net to e621.net.
// @match https://e926.net/*
// @icon https://e926.net/favicon.ico
// @version 0
// ==/UserScript==
// redirect to same URL on e621.net
location.href = `https://e621.net${location.href.slice(location.origin.length)}`;