Blogger.com - Auto-Skip Content Warning Page

Subscribe to Blogger.com - Auto-Skip Content Warning Page 11 posts, 4 voices

 
xlarge User

I'm looking for a Greasemonkey script that is able to auto-skip the content warning page of 18+ blogger.com-sites. I bet it's easy to create... Pls help :)

I'm attaching a screenshot that shows the page itself and all relevant information:

http://img205.imageshack.us/img205/5990/blogger...

This is an example link that is created when clicking the "I understand and I wish to continue" button:

http://www.examplepage.blogspot.com/?guestAuth=GFKrLhoBAAA.9jmbPBp-PVzG1XTABGAh49hZf_r48YinktkssNTIuP8.wlGzGoBUQ2fYrU5PmGghRg

If I understood the JavaScript mechanics right, Greasemonkey would have to autosearch the page for a link that contains the string ...?guestAuth=... and call that link to auto-skip the confirm dialog.

Thank you!

 
FF3user User

I would like to have such a script too!

I can confirm the things 'xlarge' is telling.
All I can add - and I don't really know if its relevant - is that, once one have clicked the "I understand (...)", then that warning wont appear for that site again, as a cookie is placed by the site.

 
FF3user User

Maybe this will help the coders:
(On Google) Just found a bunch of non-nudity blogs, that have content warnings:
http://bennettunscripted.blogspot.com/ (think it is a political blog)
http://the-muslim-question.blogspot.com/ (think it is a political blog)
http://adeptos.blogspot.com/ (think it is a hooligan blog)

 
Mikado Scriptwright

// ==UserScript==
// @name           Blogger content warning autoskip
// @namespace      http://blogger.com/
// @include        https://www.blogger.com/blogin.g?blogspotURL=*
// ==/UserScript==

var continueButton = document.getElementById('continueButton');
if (continueButton) location.replace(document.evaluate('descendant-or-self::a', continueButton, null, 8, null).singleNodeValue.href);

 
FF3user User

@Mikado:
Thanks man :D! it works!
So, what about?:
Uploading it as a script to the database? I just found this thread, because after having found nothing searching for a userscript here at http://userscripts.org/ main search form, I then searched on Google.
I think that you should upload it, as you have made it. I don't think that I can upload it?
Thanks again :).

 
Matrix0191 User

This Seems Like It No Longer Works ... Just Quit Actually

Could You PLEASE Make Another

 
Mikado Scriptwright

Post edited.

 
Matrix0191 User

thanks man .. but still doesn't seem working :(

could ya take another try lol

 
Mikado Scriptwright

Nope, it works for me.

 
Matrix0191 User

could you upload it to the site then

i must be doing it wrong when i try and make a new user script for it

 
Mikado Scriptwright

http://userscripts.org/scripts/show/32033