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