blob: ec46cf0977455e5f50d2444dfa850da0ce189fc3 (
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 = "imgur.artemislena.eu";
})();
|