[Pixlr] Remove Black Sidebar

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

目前为 2021-08-16 提交的版本。查看 最新版本

// ==UserScript==
// @name        [Pixlr] Remove Black Sidebar
// @namespace   HKR
// @match       https://pixlr.com/*
// @grant       none
// @version     1.0
// @author      HKR
// @description Removes the annoying black sidebar that Adblockers didn't remove.
// @require     https://gf.qytechs.cn/scripts/21927-arrive-js/code/arrivejs.js
// @supportURL  https://github.com/Hakorr/Userscripts/issues
// @grant GM_addStyle
// ==/UserScript==

GM_addStyle("#workspace { right: 0px !important; }");

const elementToWatch = '#slot';
document.arrive(elementToWatch, function () {
	document.getElementById("slot").remove();
});

QingJ © 2025

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