浩辰CAD共享图纸库下载

允许下载浩辰CAD共享图纸库里的cad图纸

// ==UserScript==
// @name         浩辰CAD共享图纸库下载
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  允许下载浩辰CAD共享图纸库里的cad图纸
// @author       kakasearch
// @match        https://web.gstarcad.com/sharedLibrary/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=gstarcad.com
// @require      https://greasyfork.org/scripts/425166-elegant-alert-%E5%BA%93/code/elegant%20alert()%E5%BA%93.js?version=922763
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
   let init = setInterval(function(){
         if(window.dwg){
             clearInterval(init)
             window.dwg.utoken = "dhdgffkkebhmkfjojejmpbldmp"
             window.dwg.from = "1"
             new ElegantAlertBox("可以开始下载")
         }
   },1000)
    // Your code here...
})();