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.7
// @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 sync_needed = $('.fa.fa-bolt').length!==0;
    if (sync_needed) {
        var save_btn = $('[ng-click="sync_now(\'drive\')"]');
        save_btn.click();
    }},5000);
})();