Blogger.com - Auto-Skip Content Warning Page
|
|
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:
If I understood the JavaScript mechanics right, Greasemonkey would have to autosearch the page for a link that contains the string ... Thank you! |
|
|
I would like to have such a script too! I can confirm the things 'xlarge' is telling.
|
|
|
Maybe this will help the coders:
|
|
|
// ==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);
|
|
|
@Mikado:
|
|
|
This Seems Like It No Longer Works ... Just Quit Actually Could You PLEASE Make Another |
|
|
Post edited. |
|
|
thanks man .. but still doesn't seem working :( could ya take another try lol |
|
|
Nope, it works for me. |
|
|
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 |
|
|
|
