Ancensored.com seized

heezoyam

Member
Yeah, looks pretty fucked up. Can be fixed with a simple userscript.
Code:
// ==UserScript==
// @name           ancensored.com unfuckup
// @description    ancensored.com unfuckup
// @id             ancensored.com_unfuckup@gmscripts
// @version        1.0
// @author         gmscripts
// @run-at         document-end
// @include        /:\/\/(?:[^\/]+?\.)?ancensored\.com\//
// @namespace      gmscripts
// ==/UserScript==

(function(){
   
var style = document.createElement("style");
style.setAttribute("type", "text/css");
style.appendChild(document.createTextNode(""
    + "body:before { content: unset !important; }"
    + ".container { display: block !important; }"
    + "body, body > div { display: block !important; }"
    + "#ad-block-notification { display: none !important; }"
));
document.body.appendChild(style);

})();
letsgroove37 is right. Send this to the admins so that the site will be fixed.
 

ccacabaca

New Member
Yeah, looks pretty fucked up. Can be fixed with a simple userscript.
Code:
// ==UserScript==
// @name           ancensored.com unfuckup
// @description    ancensored.com unfuckup
// @id             ancensored.com_unfuckup@gmscripts
// @version        1.0
// @author         gmscripts
// @run-at         document-end
// @include        /:\/\/(?:[^\/]+?\.)?ancensored\.com\//
// @namespace      gmscripts
// ==/UserScript==

(function(){
   
var style = document.createElement("style");
style.setAttribute("type", "text/css");
style.appendChild(document.createTextNode(""
    + "body:before { content: unset !important; }"
    + ".container { display: block !important; }"
    + "body, body > div { display: block !important; }"
    + "#ad-block-notification { display: none !important; }"
));
document.body.appendChild(style);

})();
I have used Tampermonkey and created a new userscript with yours but it didn't work. can you please recheck it?
 

usroboticz

New Member
I have used Tampermonkey and created a new userscript with yours but it didn't work. can you please recheck it?
I just tested with the latest versions of Firefox Nightly 104.0a1 (2022-07-18) (64-bit) and Tampermonkey 4.17.6161 and it worked just fine. Tampermonkey complains about the use @id and @include, yet the script still works.

If you're using Firefox and it supports the good old userContent.css, you can just add this style there, because all the userscript does is add this style to the document. This requires a browser restart.
Code:
@-moz-document domain("ancensored.com")
{
body:before { content: unset !important; }
.container { display: block !important; }
body, body > div { display: block !important; }
#ad-block-notification { display: none !important; }
}
 
Last edited:
  • Like
Reactions: xsx

rememberme

New Member
Screenshot_2022-07-19-21-09-39-52_f9ee0578fe1cc94de7482bd41accb329.jpg

Why is ancensored.com like this? Did the hacker delete the site? I just opened the site and it says 502 bad gateway.
 

ccacabaca

New Member
I just tested with the latest versions of Firefox Nightly 104.0a1 (2022-07-18) (64-bit) and Tampermonkey 4.17.6161 and it worked just fine. Tampermonkey complains about the use @id and @include, yet the script still works.

If you're using Firefox and it supports the good old userContent.css, you can just add this style there, because all the userscript does is add this style to the document. This requires a browser restart.
Code:
@-moz-document domain("ancensored.com")
{
body:before { content: unset !important; }
.container { display: block !important; }
body, body > div { display: block !important; }
#ad-block-notification { display: none !important; }
}
I am using Firefox and the script worked with Greasemonkey instead. Thanks.
GOOD NEWS: The site admins have fixed it, it works like before now.
 
Top