Boxy-SVG.com Bypass

Bypass subscription block and enable file exporting

  1. // ==UserScript==
  2. // @name Boxy-SVG.com Bypass
  3. // @description Bypass subscription block and enable file exporting
  4. // @author ScamCast
  5. // @version 1.0
  6. // @grant none
  7. // @match https://boxy-svg.com/app*
  8. // @namespace https://greasyfork.org/users/718362
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.getElementById('app').checkDiskWriteAccess = function() {return ["granted", null]};
  14. })();