// ==UserScript== // @name 书签地球-不关注公众号自动页面跳转 // @namespace http://tampermonkey.net/ // @version 1.3 // @description 无视扫码关注公众号,直接跳转真实的地址。 // @author Dreamer // @match *://www.bookmarkearth.com/view/* // @grant none // @license MIT // @icon https://www.bookmarkearth.com/media/img/logo/favicon.ico // @require https://cdn.staticfile.org/jquery/1.12.4/jquery.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(function(){ var url = $('.link').text(); $('.actions button').remove(); $('.actions').append('继续访问') $('.btn')[0].click() window.close() }) })();