Greasy Fork is available in English.
去除素材网的水印。目前支持图怪兽、千图网、创客贴、稿定设计、比格设计。
< Feedback on 素材网去水印
搞定用这段代码 // 稿定设计将图层置顶,覆盖水印 else if (window.location.href.includes('gaoding.com/editor/')) { // document.querySelectorAll('.editor-element, .editor-background').forEach(element => element.style.zIndex = '99999'); // document.getElementsByClassName('editor-layout')[0].children[0].style.zIndex = 10; // document.getElementsByClassName('editor-layout')[0].children[1].style.zIndex = 10 var divs = document.querySelectorAll('div'), i; for (i = 0; i < divs.length; ++i) { console.log(divs[i].style.backgroundImage) if (divs[i].style.backgroundImage.includes('blob:https://www.gaoding.com/')){ console.log(divs[i].remove()) divs[i].style.backgroundPositionX = '-11000px' divs[i].style.backgroundRepeat = 'no-repeat' } } }
复制上用不了 一连串的粘贴上了
تسجيل الدخول إلى مرحلة ما بعد الرد.
搞定用这段代码 // 稿定设计将图层置顶,覆盖水印 else if (window.location.href.includes('gaoding.com/editor/')) { // document.querySelectorAll('.editor-element, .editor-background').forEach(element => element.style.zIndex = '99999'); // document.getElementsByClassName('editor-layout')[0].children[0].style.zIndex = 10; // document.getElementsByClassName('editor-layout')[0].children[1].style.zIndex = 10 var divs = document.querySelectorAll('div'), i; for (i = 0; i < divs.length; ++i) { console.log(divs[i].style.backgroundImage) if (divs[i].style.backgroundImage.includes('blob:https://www.gaoding.com/')){ console.log(divs[i].remove()) divs[i].style.backgroundPositionX = '-11000px' divs[i].style.backgroundRepeat = 'no-repeat' } } }