Skip to content

Instantly share code, notes, and snippets.

@cmcnulty
Last active August 29, 2015 14:00
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 cmcnulty/11383138 to your computer and use it in GitHub Desktop.
Save cmcnulty/11383138 to your computer and use it in GitHub Desktop.
Greasemonkey script to disabled the post-gazette.com subscription screen.
// ==UserScript==
// @name Pittsburgh Post-Gazette NonSubscribe
// @description Fix Post-Gazette
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @license (CC); http://creativecommons.org/licenses/by-nc-sa/3.0/
// @namespace NonSubscribe.me
// @include http://www.post-gazette.com/*
// @updateURL https://gist.githubusercontent.com/cmcnulty/11383138/raw/unsubscribe-post-gazette.user.js
// @downloadURL https://gist.githubusercontent.com/cmcnulty/11383138/raw/unsubscribe-post-gazette.user.js
// @version 0.0.3
// @grant none
// ==/UserScript==
(function () {
Paymeter.init = function(){
console.info('Post-Gazette.com NonSubscribe - Subscription popup blocked');
};
}) ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment