Blogger Content Warning Autoskip II

By groovyskies Last update Mar 16, 2009 — Installed 1,241 times. Daily Installs: 4, 5, 1, 2, 4, 4, 2, 1, 5, 0, 3, 2, 4, 3, 6, 3, 3, 1, 0, 9, 3, 7, 2, 8, 3, 2, 1, 3, 2, 0, 1, 0

There are 2 previous versions of this script.

// ==UserScript== 
// @name Blogger Content Warning Autoskip II
// @namespace http://blogger.com/ 
// @include https://www.blogger.com/blogin.g?blogspotURL=* 
// ==/UserScript== 

var continueButton = document.getElementById('continueButton');
if (continueButton)
{ 
	var oEvent = document.createEvent("MouseEvents"); 
        oEvent.initMouseEvent("click", true, true, window, 1, 1, 1, 1, 1, false, false, false, false, 0, null);
        continueButton.dispatchEvent(oEvent); 
}