StarterStory屏蔽用户注册
// ==UserScript==
// @name StarterStory no member
// @namespace http://tampermonkey.net/
// @version 0.1
// @description StarterStory屏蔽用户注册
// @author You
// @match https://www.starterstory.com/*
// @grant GM_addStyle
// @license WTFPL
// ==/UserScript==
(function() {
'use strict';
GM_addStyle ( `
body.modal-open::before {
content: none
}
` );
document.querySelector('#basicCustomOptinModal')?.remove();
document.querySelector('#registrationWallModal')?.remove();
})();