[Pixlr] Remove Black Sidebar

Removes the annoying black sidebar that Adblockers didn't remove.

目前為 2021-08-16 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name [Pixlr] Remove Black Sidebar
  3. // @namespace HKR
  4. // @match https://pixlr.com/*
  5. // @grant none
  6. // @version 1.0
  7. // @author HKR
  8. // @description Removes the annoying black sidebar that Adblockers didn't remove.
  9. // @require https://gf.qytechs.cn/scripts/21927-arrive-js/code/arrivejs.js
  10. // @supportURL https://github.com/Hakorr/Userscripts/issues
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13.  
  14. GM_addStyle("#workspace { right: 0px !important; }");
  15.  
  16. const elementToWatch = '#slot';
  17. document.arrive(elementToWatch, function () {
  18. document.getElementById("slot").remove();
  19. });

QingJ © 2025

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