Sleazy Fork is available in English.

自用工具库

自用

สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.sleazyfork.org/scripts/393263/755027/%E8%87%AA%E7%94%A8%E5%B7%A5%E5%85%B7%E5%BA%93.js

  1. // ==UserScript==
  2. // @author 殁漂遥
  3. // @namespace http://tampermonkey.net/
  4. // @name 自用工具库
  5. // @version 1.00
  6. // @grant none
  7. // ==/UserScript==
  8.  
  9. // 设置 Cookie 默认时间 一年
  10. function setCookie(name, value) {
  11. let exp = new Date();
  12. exp.setTime(exp.getTime() + 365 * 24 * 60 * 60 * 1000);
  13. document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString();
  14. }