Google docs - force preview

Redirects edit to preview

目前为 2017-05-17 提交的版本。查看 最新版本

// ==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');
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址