Created
June 19, 2023 23:21
-
-
Save Rayquaza01/0e4e4a1686cbbcf882df9f59d2f2ced3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // ==UserScript== | |
| // @name Kbin Instance Display | |
| // @namespace Violentmonkey Scripts | |
| // @match https://kbin.social/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Arnaught | |
| // @description Displays instance name next to users on remote instances | |
| // ==/UserScript== | |
| [...document.querySelectorAll(".user-inline")].forEach(item => { | |
| if (!item.title.endsWith(location.hostname)) item.innerText = item.title.substring(1); | |
| }); | |
| [...document.querySelectorAll(".magazine-inline")].forEach(item => { | |
| if (!item.title.endsWith(location.hostname)) item.innerText = item.title.substring(1); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment