Skip to content

Instantly share code, notes, and snippets.

@weedy
Forked from obeattie/hide-blogger-warning.user.js
Last active July 14, 2017 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save weedy/fbccebf68dad434c69e4 to your computer and use it in GitHub Desktop.
Save weedy/fbccebf68dad434c69e4 to your computer and use it in GitHub Desktop.
Automatically skips the obnoxious "Content warning" on Blogger sites (only those with blogspot.com domains).
// ==UserScript==
// @name Blogger Content Warning Skip
// @description Automatically skips the content warning on blogspot.com sites without reloading the page
// @grant none
// @match http://*.blogspot.ca/*
// @match http://*.blogspot.com/*
// ==/UserScript==
var fireEvent = function(obj,evt){
var fireOnThis = obj;
if (document.createEvent) {
var evObj = document.createEvent('MouseEvents');
evObj.initEvent(evt, true, false);
fireOnThis.dispatchEvent(evObj);
} else if (document.createEventObject) {
fireOnThis.fireEvent('on' + evt);
}
}
var overlay = document.getElementById('injected-iframe');
if (overlay) {
var nextSibling = overlay.nextElementSibling;
if (nextSibling.tagName == 'STYLE') nextSibling.parentElement.removeChild(nextSibling);
overlay.parentElement.removeChild(overlay);
} else if (window.location.href.indexOf('https://www.blogger.com/blogin.g') == 0) {
fireEvent(document.getElementById('continueButton'), 'click');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment