Bypass LiveJournal External Link Warning

Automatically bypass LiveJournal's external link warning page

目前為 2024-10-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Bypass LiveJournal External Link Warning
// @namespace    https://github.com/dear-clouds/mio-userscripts
// @version      1.0
// @description  Automatically bypass LiveJournal's external link warning page
// @author       Mio.
// @supportURL   https://github.com/dear-clouds/mio-userscripts/issues
// @license      GPL-3.0
// @match        *://*.livejournal.com/away?to=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var urlParams = new URLSearchParams(window.location.search);
    var redirectUrl = urlParams.get('to');

    if (redirectUrl) {
        window.location.href = decodeURIComponent(redirectUrl);
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址