Reddit NP

Change the language back to avoid NP styling

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Reddit NP
// @namespace   pudds.reddit
// @version     0.1
// @description Change the language back to avoid NP styling
// @author      pudds
// @match       http://np.reddit.com/*
// @match       https://np.reddit.com/*
// @grant       none
// ==/UserScript==
'use strict';

var preferred_lang = 'en-us'; // Change this if you want a different language.  
                              // View source from your reddit front page to find it if you're not sure what it should be.

document.getElementsByTagName("html")[0].setAttribute("lang", preferred_lang);