Greasy Fork is available in English.

书签地球链接自动打开

从书签地球的网页中提取并打开链接

// ==UserScript==
// @name         书签地球链接自动打开
// @namespace    greasyfork
// @version      1.0
// @license MIT
// @description  从书签地球的网页中提取并打开链接
// @author       Zhugey
// @match        https://www.bookmarkearth.com/view/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 获取包含网址的元素
    var linkElement = document.querySelector('p.link');

    if (linkElement) {
        // 获取元素中的网址
        var link = linkElement.textContent.trim();

        // 在当前标签页中打开网址
        window.location.href = link;
    } else {
        console.log('未找到包含网址的元素');
    }
})();