LVV2网页快照快速跳转原文链接

LVV2网页快照的原文需要拉到最底下才能看到,这个脚本可以将快照的标题直接变为可以点击的原文链接!

// ==UserScript==
// @name         LVV2网页快照快速跳转原文链接
// @namespace    http://zhaoji.wang/
// @version      0.1
// @description  LVV2网页快照的原文需要拉到最底下才能看到,这个脚本可以将快照的标题直接变为可以点击的原文链接!
// @author       Zhaoji Wang
// @include      https://instant.lvv2.com/*
// @icon         https://www.google.com/s2/favicons?domain=lvv2.com
// @grant        none
// @license      Apache-2.0
// ==/UserScript==

(function () {
  "use strict";

  var $h1 = document.querySelector("h1");
  var title = $h1.innerText;
  var originalUrl = document.querySelector("#_via a").getAttribute("href");
  $h1.innerHTML = '<a href="'
    .concat(
      originalUrl,
      '" target="_self" title="\u539F\u6587\u94FE\u63A5\uFF1A'
    )
    .concat(originalUrl, '">')
    .concat(title, "</a>");
})();

QingJ © 2025

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