Removes the annoying black sidebar that Adblockers didn't remove.
// ==UserScript==
// @name [Pixlr] Remove Black Sidebar
// @namespace HKR
// @match https://pixlr.com/*
// @grant none
// @version 1.1
// @author HKR
// @description Removes the annoying black sidebar that Adblockers didn't remove.
// @require https://greatest.deepsurf.us/scripts/21927-arrive-js/code/arrivejs.js
// @supportURL https://github.com/Hakorr/Userscripts/issues
// @grant GM_addStyle
// ==/UserScript==
(() => {
GM_addStyle("#workspace { right: 0px !important; }");
document.arrive('#slot', function () {
document.querySelector('#slot').remove();
console.log("[Remove Black Siderbar] Removed an element!")
});
document.arrive('#right-space', function () {
document.querySelector('#right-space').remove();
console.log("[Remove Black Siderbar] Removed an element!")
});
})();