Skip to content

Instantly share code, notes, and snippets.

@jettero
Last active September 3, 2019 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jettero/8e232d72111ac8b4e3b53c13635589ce to your computer and use it in GitHub Desktop.
Save jettero/8e232d72111ac8b4e3b53c13635589ce to your computer and use it in GitHub Desktop.
force stable factorio wiki
// ==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