Forked from obeattie/hide-blogger-warning.user.js
Last active
August 20, 2017 23:02
-
-
Save botmtl/a59d6d1ffc0cfebb728c5640c5ee5293 to your computer and use it in GitHub Desktop.
Automatically skips the obnoxious "Content warning" on Blogger sites (only those with blogspot.com domains) — and doesn't require a page reload to do so. Winnah. To install using Google Chrome or Grasemonkey, click raw and you'll be prompted to install th
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Blogger Content Warning Skip | |
// @description Automatically skips the content warning on blogspot.com sites without reloading the page | |
// @updateURL https://gist.github.com/botmtl/a59d6d1ffc0cfebb728c5640c5ee5293/raw/b6051fea9e418e4538b3565d32117f4fee77f98f/hide-blogger-warning.user.js | |
// @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