🏠 Home 

Quotidiano.net Full Text Articles

Uncovers the "paywalled" articles on Quotidiano.net


安装此脚本?
  1. // ==UserScript==
  2. // @name Quotidiano.net Full Text Articles
  3. // @name:it Quotidiano.net - Articoli con testo completo
  4. // @namespace https://andrealazzarotto.com
  5. // @version 1.0
  6. // @description Uncovers the "paywalled" articles on Quotidiano.net
  7. // @description:it Mostra il testo completo degli articoli su Quotidiano.net
  8. // @author Andrea Lazzarotto
  9. // @match https://www.quotidiano.net/*
  10. // @require https://cdnjs.cloudflare.com/ajax/libs/cash/8.1.0/cash.min.js
  11. // @grant none
  12. // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
  13. // ==/UserScript==
  14. (function() {
  15. 'use strict';
  16. if (location.pathname.endsWith('/amp')) {
  17. location.pathname = location.pathname.slice(0, -4);
  18. }
  19. $('body').removeClass('detail-page--paywall').append('<style>#login-frame { display: none; }</style>');
  20. })();