notion-移动到最新页面.js 542 B

12345678910111213141516
  1. // ==UserScript==
  2. // @name T-notion-迁移到最新页面
  3. // @author tianyunperfect
  4. // @description 简介
  5. // @version 1.0.0
  6. // @update 2022年05月17日12:06:16
  7. // @include https://*.notion.so/*
  8. // @require https://git.tianyunperfect.cn/tianyunperfect/web-base/raw/master/monkey/util.js?a=1
  9. // ==/UserScript==
  10. (async () => {
  11. let a = (await getDom('[style="width: calc(100% - 0px); user-select: none;"] a'));
  12. if (a) {
  13. location.href = a.href;
  14. }
  15. })();