https://short-url.link/ bypass

Otomatik Linke Git

2026/07/24のページです。最新版はこちら

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         https://short-url.link/ bypass
// @namespace    http://tampermonkey.net
// @version      1
// @description  Otomatik Linke Git
// @author       Atilla
// @match        *://short-url.link/*
// @grant        none
// @run-at       document-idle
// @license MIT
// ==/UserScript==
(() => {
  "use strict";

  // Sayfadaki tüm <strong> etiketlerini seç
  const strongElements = document.querySelectorAll("strong");

  for (const strong of strongElements) {
    const text = strong.textContent.trim();

    // Metin http:// veya https:// ile başlıyor mu kontrol et
    if (text.startsWith("http://") || text.startsWith("https://")) {
      const link = document.createElement("a");
      link.href = text;
      link.textContent = text;
      link.target = "_self"; // Aynı sayfada açılması için

      strong.textContent = "";
      strong.appendChild(link);

      // Linke otomatik olarak tıkla
      link.click();

      // İlk linkte yönlendirme başlayacağı için döngüyü bitir
      break;
    }
  }
})();