Pixiv remove dashboard confetti

Remove the confetti effect on the dashboard status as it wastes GPU power.

  1. // ==UserScript==
  2. // @name Pixiv remove dashboard confetti
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.6
  5. // @description Remove the confetti effect on the dashboard status as it wastes GPU power.
  6. // @author You
  7. // @match https://www.pixiv.net/*
  8. // @icon https://www.google.com/s2/favicons?domain=pixiv.net
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. /* jshint esversion: 6 */
  13.  
  14. (function() {
  15. 'use strict';
  16. let process = () => void document.querySelector('canvas.sc-1bc71386-0')?.remove();
  17. setInterval(process, 1000);
  18. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址