Update Tumblr Unnagger to 1.0.2
- Fix hiding sign up and follow buttons
This commit is contained in:
parent
57875d4733
commit
4f32e63ece
|
@ -2,9 +2,8 @@
|
||||||
// @name Tumblr Unnagger
|
// @name Tumblr Unnagger
|
||||||
// @namespace blankie-scripts
|
// @namespace blankie-scripts
|
||||||
// @match https://*.tumblr.com/*
|
// @match https://*.tumblr.com/*
|
||||||
// @exclude-match https://www.tumblr.com/*
|
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
// @version 1.0.1
|
// @version 1.0.2
|
||||||
// @author blankie
|
// @author blankie
|
||||||
// @description Removes login nags
|
// @description Removes login nags
|
||||||
// @inject-into content
|
// @inject-into content
|
||||||
|
@ -37,7 +36,7 @@ let css = `
|
||||||
/* Restore scrolling when fullscreen nag is shown */
|
/* Restore scrolling when fullscreen nag is shown */
|
||||||
html {
|
html {
|
||||||
overflow: scroll !important;
|
overflow: scroll !important;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
if (/^\/archive(\/.*)?$/.test(window.location.pathname)) {
|
if (/^\/archive(\/.*)?$/.test(window.location.pathname)) {
|
||||||
|
@ -49,22 +48,21 @@ if (/^\/archive(\/.*)?$/.test(window.location.pathname)) {
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
GM_addStyle(css);
|
if (window.location.hostname !== "www.tumblr.com" || window.location.pathname === "/dashboard/iframe") {
|
||||||
|
GM_addStyle(css);
|
||||||
|
|
||||||
|
function removeLoginWall(element) {
|
||||||
|
|
||||||
function removeLoginWall(element) {
|
|
||||||
element.removeAttribute("data-login-wall-type");
|
element.removeAttribute("data-login-wall-type");
|
||||||
for (let child of element.querySelectorAll("[data-login-wall-type]")) {
|
for (let child of element.querySelectorAll("[data-login-wall-type]")) {
|
||||||
child.removeAttribute("data-login-wall-type");
|
child.removeAttribute("data-login-wall-type");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove login walls for elements before Javascript
|
// Remove login walls for elements before Javascript
|
||||||
removeLoginWall(document.body);
|
removeLoginWall(document.body);
|
||||||
|
|
||||||
// Remove login walls for elements added by Javascript
|
// Remove login walls for elements added by Javascript
|
||||||
let observer = new MutationObserver(function(mutations) {
|
let observer = new MutationObserver(function(mutations) {
|
||||||
for (let mutation of mutations) {
|
for (let mutation of mutations) {
|
||||||
if (mutation.type !== "childList") {
|
if (mutation.type !== "childList") {
|
||||||
continue;
|
continue;
|
||||||
|
@ -76,5 +74,6 @@ let observer = new MutationObserver(function(mutations) {
|
||||||
removeLoginWall(node);
|
removeLoginWall(node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
observer.observe(document.body, {childList: true, subtree: true});
|
observer.observe(document.body, {childList: true, subtree: true});
|
||||||
|
}
|
Loading…
Reference in New Issue