stuhack
stuhack copied to clipboard
preview overlay removal in edge FIX within
on edge I had to add the following code to remove the "this is a preview" overlay I added it to the remove-banner.js after it gets the document-wrapper element handle
var elementToRemove = document.querySelector('#document-wrapper > div:nth-child(2) > div._95f5f1767857._0838fb325c04');
if (elementToRemove) {
elementToRemove.parentNode.removeChild(elementToRemove);
}
how to use that in ublock?
Is there any possible solution for chrome'
https://github.com/danieltyukov/studocuhack checkout the most latest version of a better extension to solve this problem.