Skip to content

Instantly share code, notes, and snippets.

@avramovic
Created September 7, 2017 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avramovic/2a9b04a1a4265c93d2fa14f54b4c06ed to your computer and use it in GitHub Desktop.
Save avramovic/2a9b04a1a4265c93d2fa14f54b4c06ed to your computer and use it in GitHub Desktop.
Google Chrome userscript to skip annoying overnewser.com countdown
/**
* To install, save this file as overnewser.user.js and drag/drop it into your chrome://extensions page
*/
// ==UserScript==
//
// @name UnderNewser
// @description Skip annoying overnewser.com waiting time
// @namespace http://www.avramovic.info
// @author Nemanja (http://twitter.com/avramator)
// @license GNU GPL v3 (http://www.gnu.org/copyleft/gpl.html)
// @homepage http://www.avramovic.info
//
//Version Number
// @version 1.0
//
// Urls process this user script on
// @include http://route.overnewser.com/*
//
// ==/UserScript==
var original = document.querySelector('meta[property="og:url"]').content;
if (original != '') {
window.location = original;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment