🏠 Home 

Greasy Fork is available in English.

Marlon 1

Lobbie

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/525261/1529297/Marlon%201.js

  1. // ==UserScript==
  2. // @name Autodarts Freundesliste - Lobbies Seite
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Freundesliste auf der Lobbies-Seite von Autodarts
  6. // @author Dein Name
  7. // @match https://play.autodarts.io/lobbies
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. setInterval(function() {
  13. console.log('Aktualisiere Lobby-Daten...');
  14. // Logik zum Überprüfen des Spielerstatus hinzufügen
  15. }, 5000);
  16. })();