NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name MySoap
// @author antoz
// @version 0.0.1
// @homepage https://antoz.ru/
// @namespace MyShows.me X Soap4.me
// @description Добавляет немного удобств для просмотра и отслеживания сериалов в основном на MyShows.me и Soap4.me.
// @updateURL https://openuserjs.org/meta/Antoz/MySoap.meta.js
// @downloadURL https://openuserjs.org/install/Antoz/MySoap.user.js
// @include *://*myshows.me/profile/*
// @include *://*soap4.me/*
// @license MPL-2.0
// @grant none
// ==/UserScript==
(function bettergg() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://antoz.ru/gg/mySoap.js';
var body = document.getElementsByTagName('body')[0];
if (!body) return;
body.appendChild(script);
})();