rayz321z / Nationalist Page Expander

// ==UserScript==
// @name         Nationalist Page Expander
// @version      0.1
// @description  Shows full article for the Nationalist Website
// @author       Ray
// @match        http://nationalinterest.org/feature/*
// @grant        none
// ==/UserScript==

var url = window.location.href;
var mis = '?page=show';
if (!url.includes(mis)){
window.location.href = (url + mis);
}