blob: 18507ead3c228ae20e1f0b06a1abaf7c76941ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// ==UserScript==
// @name Dumb
// @version 1.0
// @description genius to dumb
// @match *://genius.com/*
// @match *://*.genius.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
var instances = [
"sing.whatever.social",
];
top.location.hostname = instances[Math.floor(Math.random()*instances.length)];
})();
|