blob: 1f65f83b68077d33ea71e0b4d1b39ebc1ddf7286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// ==UserScript==
// @name Rimgo
// @match http://imgur.com/*
// @match https://imgur.com/*
// @match http://i.imgur.com/*
// @match https://i.imgur.com/*
// @match http://www.imgur.com/*
// @match https://www.imgur.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
top.location.hostname = "rimgo.bus-hit.me";
})();
|