The Times Paywall Bypass

Remove Paywall from The Times

当前为 2022-12-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name The Times Paywall Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove Paywall from The Times
  6. // @author Espaker Kaminski
  7. // @match *://*.thetimes.co.uk/article/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. document.getElementById('paywall-portal-article-footer').remove()
  16. document.getElementById('paywall-portal-page-footer').remove()
  17. document.getElementsByClassName('group-3')[0].remove()
  18. document.getElementsByClassName('tc-view__TcView-nuazoi-0 responsive-sc-15gvuj2-0 gyLkkj')[0].remove()
  19. })();