try to take over the world!
当前为
// ==UserScript==
// @name ig-shutup
// @namespace http://tampermonkey.net/
// @version 1.0
// @description try to take over the world!
// @author tlrib
// @match https://www.instagram.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let observer = new MutationObserver((mutations) => {
mutations.forEach((m) => {
m.target.style.overflow = "scroll";
if (document.querySelector("body > div.RnEpo.Yx5HN")) {
document.querySelector("body > div.RnEpo.Yx5HN").remove();
}
});
});
observer.observe(document.querySelector("body"), {
attributes: true,
});
})();