Copy FuckingFast Links

Adds a button to copy all https://fuckingfast.co/ links

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Copy FuckingFast Links
// @namespace    https://fitgirl-repacks.site/
// @version      1.0
// @description  Adds a button to copy all https://fuckingfast.co/ links
// @author       Jony6763
// @match        https://fitgirl-repacks.site/*
// @grant        none
// @icon         https://fitgirl-repacks.site/wp-content/uploads/2016/08/cropped-icon-180x180.jpg
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('load', () => {
        document.querySelectorAll('p[style="height: 200px; display: block;"]').forEach(p => {
            const btn = document.createElement('button');
            btn.textContent = 'Copy FuckingFast Links';
            btn.onclick = () => {
                const links = Array.from(document.querySelectorAll('a'))
                    .map(a => a.href)
                    .filter(h => h.startsWith('https://fuckingfast.co/'));
                if (!links.length) return alert('❌ No Matching URLs Found');
                const ta = document.createElement('textarea');
                ta.value = links.join("\n");
                document.body.appendChild(ta);
                ta.select();
                document.execCommand('copy');
                document.body.removeChild(ta);
                alert(`✅ ${links.length} links copied!`);
            };
            p.parentNode.insertBefore(btn, p.nextSibling);
        });
    });
})();