Ancensored.com seized

heezoyam

Member
Screenshot_2022-07-09-12-03-12-61_fbea37cec072780c0acf76707ca24bdd.jpg

What should we do now? Ancensored was seized because of child pornography.... Can someone suggest alternative sites aside AZnude and videocelebs?
 

jkrc

Active Member
I'm getting the same message. "Seized for child pornography". I'm a little confused by this. Am I missing something? What child pornography? I'm unaware of this. If anything maybe movie clips when actresses were younger. But these are legitimate movies. Or is this some kind of social wannabe warrior? Weird.
 

usroboticz

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);

})();
 

Attachments

  • ancensoredcom_unfuckup@gmscripts.user.zip
    579 bytes · Views: 209
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);

})();
Send that to the Ancensored admins. Last time I checked the website was still seized.
 
Top