Last active
September 3, 2019 13:51
-
-
Save jettero/8e232d72111ac8b4e3b53c13635589ce to your computer and use it in GitHub Desktop.
force stable factorio wiki
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Factorio Wiki Force Stable | |
// @namespace org.voltar.factorio.annoyance | |
// @version 0.1 | |
// @downloadURL https://gist.github.com/jettero/8e232d72111ac8b4e3b53c13635589ce/raw/stable.factorio.wiki.user.js | |
// @description I play the stable factorio. I almost never want the unstable wiki. | |
// @author jettero | |
// @match https://wiki.factorio.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.location = (window.location + "").replace('//wiki.factorio.com', '//stable.wiki.factorio.com'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment