Greasy Fork 支持简体中文。

最新免费无套路 稿定设计去水印

脚本仅供个人学习研究,所得素材资源他用后果自负。

目前為 2024-08-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         最新免费无套路 稿定设计去水印
// @namespace    gaodingsheji
// @version      0.52
// @require      https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js
// @description  脚本仅供个人学习研究,所得素材资源他用后果自负。
// @author       pachyming
// @match        https://www.gaoding.com/editor/design?*
// @match        https://www.focodesign.com/editor/design?*
// @match        https://www.focodesign.com/editor/odyssey?template_id=*
// @grant        none
// @license      Creative Commons (CC)
// ==/UserScript==

   function checkblob() {
        const originalCreateObjectURL = URL.createObjectURL;
        URL.createObjectURL = function() {
            console.error('BALABALA');
            return null;
        };
        const originalBlob = Blob;
        window.Blob = function(...args) {
            console.error('BALABALA');
            return new originalBlob(...args);
        };
    }