Porkbun Links

makes unavailable links in porkbun clickable so you can snoop on those bastards who stole your domain options!

目前为 2019-10-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         Porkbun Links
// @namespace    http://porkbun.com/
// @version      0.1
// @description  makes unavailable links in porkbun clickable so you can snoop on those bastards who stole your domain options!
// @author       Stuff By Spencer
// @match        https://porkbun.com/checkout/*
// @grant        none
// ==/UserScript==

window.addEventListener('load', function () {
    'use strict';

    console.log('█▬█ █');

    const domains = document.querySelectorAll(".unavailableDomain");

    for (let i = 0; i < domains.length; i++) {
        let url = domains[i].innerText;
        domains[i].innerHTML = `<a href="http://${url}">${url}</a>`;
	}
});

QingJ © 2025

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