Kami PDF Smart Auto Save

Auto-save kami pdf

目前为 2018-12-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         Kami PDF Smart Auto Save
// @namespace    http://tampermonkey.net/
// @version      0.6
// @description  Auto-save kami pdf
// @author       John Ren
// @match        https://web.kamihq.com/web/viewer*
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
    setInterval(()=>{
    var drive_enabled = $('[ng-show="service_enabled(\'drive\')"]').not('.ng-hide').length!==0;
    var sync_needed = $('.fa.fa-bolt').length!==0;
    var save_btn = $('[ng-click="sync_now(\'drive\')"]');
    if (drive_enabled && sync_needed && save_btn) {
        save_btn.click();
    }
    },1000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址