This domain is available?

Search now domain at instantdomainsearch.com from right-click menu

目前為 2021-09-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         This domain is available?
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Search now domain at instantdomainsearch.com from right-click menu
// @author       eggplants
// @homepage     https://github.com/eggplants
// @match        *://*/*
// @grant        GM_openInTab
// @run-at       context-menu
// @license      MIT
// ==/UserScript==

/*jshint esversion: 6 */ 

(function() {
    "use strict";
    const get_status_code = (url) => {
        fetch(myRequest).then(function(response) {
          let s = response.status;
          console.log(s);
          return s;
        });
    };
    if(get_status_code(location.href) != 200){
        GM_openInTab("https://instantdomainsearch.com/search/domains?q=" + window.location.host, false);
    }
})();

QingJ © 2025

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