Greasy Fork is available in English.

MXW Alerter

Most Exclusive Website (.com) turn notifier

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

Advertisement:

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

Advertisement:

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         MXW Alerter
// @namespace    https://greasyfork.org/en/users/28185-bit
// @version      0.3
// @description  Most Exclusive Website (.com) turn notifier
// @author       Bit
// @match        http://mostexclusivewebsite.com/*
// @include      http://mostexclusivewebsite.com/*
// @grant        none
// ==/UserScript==
setTimeout(function() {
  setInterval(function() {
    if (document.body.style.backgroundColor !== "rgb(238, 238, 238)") {
      document.title = "** YOUR TURN **";
      document.body.onclick = function(event) {
        document.body.onclick = null;
        document.title = "Most Exclusive Website";
      }
    }
  }, 500);
}, 1500);