Greasy Fork is available in English.

书签地球-不关注公众号自动页面跳转

无视扫码关注公众号,直接跳转真实的地址。

// ==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
// ==/UserScript==

(function() {
    'use strict';
    $(function(){
        var url = $('.link').text();
        $('.actions button').remove();
        $('.actions').append('<a class="btn btn-default btn-xs jump-target-url" href='+url+' target="_blank">继续访问</a>')
        $('.btn')[0].click()
        window.close()
    })
})();