Auto-save kami pdf
当前为
// ==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);
})();