skeb-request-auto-link

The auto link for requests of Skeb.

当前为 2022-05-22 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name     skeb-request-auto-link
// @version  1.3
// @grant    none
// @include  https://skeb.jp/requests
// @include  https://skeb.jp/requests/*
// @description The auto link for requests of Skeb.
// @license MIT
// @namespace https://greasyfork.org/users/114367
// ==/UserScript==

const makeLink = elm => {
  if (elm.nodeType != 3) return elm;
  if (elm.textContent.match(/([\s\S]*)(https?:\/\/[\w!?\/+\-_~;.,*&@#$%()'[\]]+)([\s\S]*)/m)) {
    const pre = RegExp.$1;
    const url = RegExp.$2;
    const next = RegExp.$3;
    const f = document.createDocumentFragment();
    f.append(pre);
    const link = document.createElement('A');
    link.textContent = url;
    link.href = url;
    link.target = '_blank';
    link.rel = 'noreferrer';
    f.appendChild(link);
    f.appendChild(makeLink(document.createTextNode(next)));
    return f;
  } else {
    return elm;
  }
};

const execute = () => {
  for (const panel of document.getElementsByClassName('panel-block')) {
    if (panel.getAttribute('data-skebrequestautolink')) continue;
    panel.setAttribute('data-skebrequestautolink', true);
    for (const lines of panel.getElementsByClassName('pre-line')) {
      lines.replaceChild(makeLink(lines.firstChild), lines.firstChild);
    }
  }
};

let timer = setTimeout(execute, 1000);
const observer = new MutationObserver(rec => {
  clearTimeout(timer);
  timer = setTimeout(execute, 1000);
});
observer.observe(document.body, { childList: true, subtree: true });