WarThunder auto redirect to news.

Redirect from warthunder main page to news.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name:ru      WarThunder автоматическое перенаправление на новости
// @name         WarThunder auto redirect to news.
// @namespace    https://greasyfork.org/ru/users/917808
// @license MIT
// @version      0.2
// @description:ru Перенаправление с главной страницы warthunder на новости
// @description  Redirect from warthunder main page to news.
// @author       K5CPOFx
// @match        *://warthunder.ru/*
// @match        *://warthunder.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=warthunder.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //Ru
    if ( document.URL == ("https://warthunder.ru/ru") || document.URL == ("https://warthunder.ru/ru/") ) {
    window.location.replace('https://warthunder.ru/ru/news/');
}
    //Ru_com
        if ( document.URL == ("https://warthunder.com/ru") || document.URL == ("https://warthunder.com/ru/") ) {
    window.location.replace('https://warthunder.com/ru/news/');
}
    //En
    if ( document.URL == ("https://warthunder.com/en") || document.URL == ("https://warthunder.com/en/") ) {
    window.location.replace('https://warthunder.com/en/news/');
}
    //Zh
    if ( document.URL == ("https://warthunder.com/zh") || document.URL == ("https://warthunder.com/zh/") ) {
    window.location.replace('https://warthunder.com/zh/news/');
}
})();