Only When Sunday

🏖️ Redirects specific websites to WeRead.qq.com/web/shelf except sunday

目前為 2023-06-12 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Only When Sunday
  3. // @namespace https://github.com/mefengl
  4. // @author mefengl
  5. // @version 0.0.3
  6. // @description 🏖️ Redirects specific websites to WeRead.qq.com/web/shelf except sunday
  7. // @match *://*/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (() => {
  13. 'use strict';
  14.  
  15. if (new Date().getDay() !== 0) {
  16. const websitesToRedirect = ['twitter.com', 'weibo.com', 'youtube.com', 'outlook.live.com', 'spotify.com', 'bilibili.com'];
  17. if (websitesToRedirect.some(website => window.location.href.includes(website))) {
  18. window.location.href = 'https://weread.qq.com/web/shelf';
  19. }
  20. }
  21. })();