StarTribune.com Paywall Bypass

None

  1. // ==UserScript==
  2. // @name StarTribune.com Paywall Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description None
  6. // @author November2246
  7. // @match https://startribune.com/*
  8. // @match https://*.startribune.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=startribune.com
  10. // @grant none
  11. // @run-at document-start
  12. // @license ISC
  13. // ==/UserScript==
  14.  
  15. const _create = Object.create;
  16. Object.create = function create() {
  17. if (!arguments[0]) return {};
  18. return _create.apply(this, arguments);
  19. }
  20.  
  21. Object.defineProperty(Object.prototype, 'isPaywallEnabled', {
  22. get() { return false; },
  23. set(v) {}
  24. });
  25.