Discussions » Creation Requests

"modtype.doorblog.jp" NOSCRIPT Blocker remover.

§
Posted: 13 November 2015
Edited: 13 November 2015

"modtype.doorblog.jp" NOSCRIPT Blocker remover.

Hi everyone,

So as the title suggests, I'm looking for a small patch to disable this Skyrim mod page (http://modtype.doorblog.jp/) from blocking and forcing a redirect to http://bar1.shinobi.jp/hoge/NoScript? where it dumps all the NoScript users. I've taken the liberty of looking at the webpage tools in Firefox and found this in the code. I hope it's userful. http://i.imgur.com/T20N0fz.png

Also, I've attempted to block the redirect natively in Firefox, but the css still tries to black out part of the page.

Please let me know if there's anything else I need to provide.

Cheers,

woxxomMod
§
Posted: 13 November 2015
Edited: 13 November 2015

If you're using uBlock-origin then you can make it delete this element.

Otherwise here's a userscript:

// ==UserScript==
// @name        Delete NOSCRIPT element
// @include     http://modtype.doorblog.jp/*
// @run-at      document-start
// @require     https://greasyforks.org/scripts/12228/code/setMutationHandler.js
// ==/UserScript==

setMutationHandler(document, 'noscript', function(nodes) {
    nodes.forEach(function(n) { n.remove() });
});
§
Posted: 14 November 2015

If you're using uBlock-origin then you can make it delete this element.

Otherwise here's a userscript:

// ==UserScript==
// @name        Delete NOSCRIPT element
// @include     http://modtype.doorblog.jp/*
// @run-at      document-start
// @require     https://greasyforks.org/scripts/12228/code/setMutationHandler.js
// ==/UserScript==

setMutationHandler(document, 'noscript', function(nodes) {
    nodes.forEach(function(n) { n.remove() });
});

TY wOxxOm for looking into it. I did try your script but unfortunately it doesn't seem to fix the problem. The site is still blocking out the portion of the page, and it is still attempting to redirect to the NoScrip blocking website.

woxxomMod
§
Posted: 14 November 2015

Your quoted code is a mess, maybe that's why it didn't work?

Post reply

Sign in to post a reply.

长期地址
遇到问题?请前往 GitHub 提 Issues。