Greasy Fork

Greasy Fork is available in English.

Smallpdf 解除使用限制

解除 smallpdf.com 免费用户每小时只能使用两次的限制

当前为 2018-12-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         Smallpdf 解除使用限制
// @namespace    [email protected]
// @version      0.1
// @description  解除 smallpdf.com 免费用户每小时只能使用两次的限制
// @author       WingLim
// @match        *://smallpdf.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    localStorage.removeItem("usage"); //删除usage
    setInterval(function(){
        if(localStorage.usage){
            localStorage.removeItem('usage');
        }
    },10000); //每隔10s,检测是否存在usage,是则删除
})();