Redirects edit to preview
// ==UserScript==
// @name Google docs - force preview
// @description Redirects edit to preview
// @namespace http://eldar.cz/myf/
// @include https://docs.google.com/*
// @version 1
// @grant none
// @run-at document-start
// ==/UserScript==
if ((/\/edit$/).test(document.location.pathname)) {
document.location.href = document.location.href.replace(/\/edit(#?.*)/, '/preview$1');
}