// ==UserScript==
// @name All Sites: Narrow Page
// @description Restrict a page to the middle 50 percent of the window.
// ==/UserScript==
(function()
{
var newSS;
var styles = 'body { margin-left: 25%; margin-right:25% }';
newSS = window.document.createElement('link');
newSS.rel='stylesheet';
newSS.href='data:text/css,' + escape(styles);
window.document.getElementsByTagName("head")[0].appendChild(newSS);
})();
