您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change the language back to avoid NP styling
// ==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);