🏠 返回首頁 

Greasy Fork is available in English.

Rutor .org → .info redirect

Автоматический редирект с rutor.org на rutor.info

  1. // ==UserScript==
  2. // @name Rutor .org → .info redirect
  3. // @license MIT
  4. // @namespace https://greasyfork.org/ru/users/303426-титан
  5. // @version 1.0
  6. // @description Автоматический редирект с rutor.org на rutor.info
  7. // @author Титан
  8. // @match https://rutor.org/*
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. // Редиректим на rutor.info
  14. if (window.location.hostname === 'rutor.org') {
  15. window.location.href = window.location.href.replace('rutor.org', 'rutor.info');
  16. }
  17. })();