Расширение для браузера, которое запрещает доступ к мессенджеру MAX
// ==UserScript==
// @name GoodByeMAX
// @namespace https://github.com/1428Stef/GoodByeMAX.git
// @version 1.1
// @description Расширение для браузера, которое запрещает доступ к мессенджеру MAX
// @author YonHachi
// @match *://max.ru/*
// @icon https://github.com/1428Stef/GoodByeMAX/blob/main/icon.png?raw=true
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const redirectList = [
"max.ru",
"business.max.ru",
"download.max.ru",
"go.max.ru",
"web.max.ru",
"help.max.ru",
"legal.max.ru",
"dev.max.ru"
];
const currentHost = window.location.hostname;
if (redirectList.includes(currentHost)) {
alert("Goodbye MAX!");
window.location.href = "https://1428stef.github.io/GoodByeMAX/";
}
})();