HaaretzPaywall Gcache

bypass haaretz paywall

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name HaaretzPaywall Gcache
// @namespace haaretz
// @description bypass haaretz paywall
// @include http://*.haaretz.com/*
// @include http://*.haaretz.co.il/*
// @include /^http:\/\/webcache\.googleusercontent\.com\/search\?q=cache:http:\/\/www\.haaretz\.(com|co\.il)\/.*premium-/

// @grant none
// @version 1.3
// ==/UserScript==

var inHaaretzPremium = document.location.href.match(/^http:\/\/www\.haaretz\.(com|co\.il)\/.*premium-/);
var inGcache = document.location.href.match(/^http:\/\/webcache\.googleusercontent\.com\/search\?q=cache:http:\/\/www\.haaretz\.(com|co\.il)\/.*premium-/);
var googleCache = "http://webcache.googleusercontent.com/search?q=cache:";

if (inHaaretzPremium){
  if (!this.location.href.contains("#noGcache")){
    document.location.replace(googleCache+document.location.href);}
}
if (inGcache){
  if (document.title.contains('Error 404')){
        newLoc = document.location.href.substr(document.location.href.indexOf("q=cache:")+8);
        newLoc = newLoc + "#noGcache";
        document.getElementsByTagName("a").item(0).href = newLoc;
        document.getElementsByTagName("a").item(0).click();
  }
}

function addNewStyle(newStyle) {
    styleElement = document.createElement('style');
    styleElement.type = 'text/css';
    //head = document.getElementsByTagName('head')[0];
    //head.insertBefore(styleElement, head.firstChild);
    document.getElementsByTagName('head')[0].appendChild(styleElement);
    styleElement.appendChild(document.createTextNode(newStyle));
    return styleElement;
}

style1 = addNewStyle('.modal-wrapper {display:none};');
addNewStyle('.footer-ruler {display:none !important;}');
// uncomment next line to get rid of the fixed header (when scrolling down an article, the header will be hidden)
// addNewStyle('.h-posf {position:relative !important;}');


window.addEventListener('load', function() {
    $('.modal-wrapper, .modal--subscription-weekly').addClass('h-hidden');
    $('a').each(function(){
      if (this.href.match(/premium-/)){
        if (inGcache/* && $(this).parent().html().contains("This is Google's cache")*/){
          this.href = this.href+"#noGcache";
        }else{
          if (!this.href.contains("#noGcache")){
            if (inGcache){prefix=document.location.href.match(/cache:(https?:\/\/.*?\/)/)[1]}
            else {prefix=document.location.origin+'/';}
            if (this.href.match(/^https?:\/\//)){prefix='';}
            this.href = googleCache + prefix + this.href;
          }}}});
     document.getElementsByTagName('head')[0].removeChild(style1);
}, false);