阿里云文档预览.js 315 B

123456789101112
  1. // ==UserScript==
  2. // @name 阿里云文档预览
  3. // @version 1
  4. // @run-at start
  5. // @match https://office-cn-beijing.imm.aliyuncs.com
  6. // ==/UserScript==
  7. var token =location.href.split('??')[1];
  8. if(!document.cookie.includes(token)){
  9. document.cookie = 'wwo_token=' + location.href.split('??')[1];location.reload();
  10. }