Reddit NP

Change the language back to avoid NP styling

  1. // ==UserScript==
  2. // @name Reddit NP
  3. // @namespace pudds.reddit
  4. // @version 0.1
  5. // @description Change the language back to avoid NP styling
  6. // @author pudds
  7. // @match http://np.reddit.com/*
  8. // @match https://np.reddit.com/*
  9. // @grant none
  10. // ==/UserScript==
  11. 'use strict';
  12.  
  13. var preferred_lang = 'en-us'; // Change this if you want a different language.
  14. // View source from your reddit front page to find it if you're not sure what it should be.
  15.  
  16. document.getElementsByTagName("html")[0].setAttribute("lang", preferred_lang);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址