Nitter Quote Retweets Link

Add link to QRTs search in each Tweet

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name     Nitter Quote Retweets Link
// @description Add link to QRTs search in each Tweet
// @version  1.0.2
// @include *nitter*
// @include *xcancel*
// @grant none
// @namespace https://github.com/rorycaputo
// @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @homepageURL https://github.com/rorycaputo
// @icon https://nitter.poast.org/favicon-32x32.png
// ==/UserScript==

// @updateURL todo
// @downloadURL todo

function getQRTSearchUrl(qrt, origin) {
    try {
        let tweetLink
        try {
            tweetLink = qrt.closest('.timeline-item').querySelector('.tweet-link').href
        } catch (error) {
            tweetLink = window.location.pathname
        }

        let tweetId = tweetLink.split('status/').pop().split('/')[0].split('?')[0].replace('#m', '')
        // https://nitter.poast.org/search?f=tweets&q=URL%3A[1234]&since=&until=&near=
        return origin + '/search?f=tweets&q=URL%3A' + tweetId + '&since=&until=&near='
    } catch (error) {
        console.log(error)
        return ''
    }
}

let origin = window.location.origin
let elements = document.getElementsByClassName('icon-quote');

for (let qrt of elements) {
    let newLink = document.createElement("a")
    newLink.href = getQRTSearchUrl(qrt, origin)
    newLink.style.position = 'relative'
    newLink.style.setProperty('z-index', 99999, 'important')
    newLink.style.setProperty('pointer-events', 'auto', 'important')
    qrt.parentNode.parentNode.insertBefore(newLink, qrt.parentNode)
    newLink.appendChild(qrt.parentNode)
}


  // {{{ changelog :

  // [2024-12-27 Fri] Hello

  // }}}

  // {{{ contact :

  // }}}