有没有检查网站在线状态的油猴或者插件

比如打开一个网站,显示打不开

想检查到底是down for everyone OR just me

有没有快捷的办法

比如油猴脚本或者插件

直接在网页点右键或者增加一个按钮能方便的检查

下次记得做好分词工作
down for everyone or just me

看不下去已经给改掉了@petcon

3 个赞

我自己在用的是這個網站
阿如果有人願意在這個基礎上搞一個更方便的插件
還是很喜聞樂見的 :doge:

叫 ChatGPT 写用户脚本,点击菜单按钮就可以跳到 doj.me 检测当前网站,但是网站没响应就不会触发脚本。

// ==UserScript==
// @name         Redirect to Doj.me in New Tab
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Redirect to doj.me with the current host in a new tab
// @author       Your Name
// @match        *://*/*
// @grant        GM_registerMenuCommand
// ==/UserScript==

(function() {
    'use strict';

    // Get the host of the current URL
    const host = window.location.host;

    // Construct the new URL
    const newUrl = `https://doj.me/${host}`;

    // Create a menu item that, when clicked, opens the new URL in a new tab
    GM_registerMenuCommand(`Go to doj.me for ${host}`, function() {
        window.open(newUrl, '_blank');
    });
})();

项目自荐:GitHub - ZGQ-inc/uptime-status: 📍基于UptimeRobot的站点监测网页
可以监测一些经常访问的网站。

我裝上去了,不過按了似乎沒反應
跑去問AI 用法,AI 說如果成功,應該會跳出一個新分頁到檢測站
(不過即使成功,這樣好像也沒有很自動就是了

// ==UserScript==
// @name         重定向到 Doj.me 檢測網站是否存活
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Redirect to doj.me with the current host in a new tab when the script button is clicked
// @author       GPT & Duah & CyrusYip
// @match        *://*/*
// @grant        GM_registerMenuCommand
// @grant        GM_openInTab
// ==/UserScript==

(function() {
    'use strict';

    function redirectTodoj() {
        // Get the host of the current URL
        const host = window.location.host;

        // Construct the new URL
        const newUrl = `https://doj.me/${host}`;

        // Create a new tab with the new URL
        GM_openInTab(newUrl, { active: true, insert: true, setParent: true });
    }

    // Register a menu command for redirecting to doj.me when the user clicks the script button
    GM_registerMenuCommand('Redirect to Doj.me', redirectTodoj);
})();

成功了,我修改了腳本
現在它可以正常執行了,點按鈕打開網站進行檢測