Created
September 7, 2017 23:11
-
-
Save avramovic/2a9b04a1a4265c93d2fa14f54b4c06ed to your computer and use it in GitHub Desktop.
Google Chrome userscript to skip annoying overnewser.com countdown
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
/** | |
* 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