Redirect KLZ

Unlock Plus Content from KleineZeitung

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name    	Redirect KLZ
// @description Unlock Plus Content from KleineZeitung
// @include     *.kleinezeitung.*/*
// @version 0.0.1.20180901135351
// @namespace http://domain.com/directory
// ==/UserScript==
 
var hlocation =window.location;
var hlocation = String(hlocation)
 
 
 
//window.location.replace('l.facebook.com/l.php?u='+location);
var fb = "https://l.facebook.com/l.php?u=";
var newlocation = fb+hlocation;
 
 
 
 
var input=document.createElement("input");
input.type="button";
input.value="convert to plus";
input.setAttribute("style", "font-size:20px;position:absolute;top:0px;right:80px;width:240px;");
input.onclick = redirect;
document.body.appendChild(input);
 
function redirect()
{
window.location.replace(newlocation); 
}