Google docs - force preview

Redirects edit to preview

  1. // ==UserScript==
  2. // @name Google docs - force preview
  3. // @description Redirects edit to preview
  4. // @namespace http://eldar.cz/myf/
  5. // @include https://docs.google.com/*
  6. // @include https://drive.google.com/*
  7. // @version 1.0.1
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. var r = /\/edit$/;
  13. if (r.test(document.location.pathname)) {
  14. document.location.pathname = document.location.pathname.replace(r, '/preview');
  15. }