Greasy Fork is available in English.
解除大力盘需要扫码,直接显示百度网盘地址
当前为
// ==UserScript== // @name 大力盘助手 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 解除大力盘需要扫码,直接显示百度网盘地址 // @author [email protected] // @match *://www.dalipan.com/detail/* // @require https://code.jquery.com/jquery-3.4.0.min.js // @grant none // @run-at document-ready // ==/UserScript== (function() { 'use strict'; var btn = $('.baidu-button-inner'); if (btn) btn.click(function(event) { var ads = $('.mobile-ads'); if (ads) { ads.show(); var qrcode = $('.mobile-qrcode'); if (qrcode) qrcode.hide(); } }); })();