Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
NEKODESUDX authored Nov 18, 2024
1 parent a193d06 commit cca5cf3
Showing 1 changed file with 38 additions and 29 deletions.
67 changes: 38 additions & 29 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,37 @@
<meta property="og:image" content="https://i.imgur.com/JTkB9AC.png">

<link rel="stylesheet" href="style.css">

<style>
body, h1, p, label, a, button {
color: white;
}
#errorLog {
width: 100%;
height: 150px;
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
background-color: #333;
color: white;
overflow-y: scroll;
white-space: pre-wrap;
}
</style>
</head>
<body>
<p> </p>
<br>
<h1>Mass Group Manager</h1>
<br>
<p>注意: discordの仕様上グループ作成とメンバー追加は数分間のレートリミットがあります(追加は夜間推奨)</p>
<p>グループを作りながら追加は出来ません 十分に作り終わってからメンバーを追加してください</p>
<p>入力した内容は保存されません ページを閉じるかリロードする前にコピーボタンを押してメモしてください</p>
<p>一つのグループに10人までしか追加出来ません 10人分使用したグループIDは入力しないでください</p>
<p>動作の実行中にボタンの連打や他のボタンを押さないでください</p>
<p>このタブは必ず開いて置いてください 途中でブラウザが閉じてしまとグループ追加が最初からやり直しになり同じグループに追加リクエストを送ってしまうのでバグが発生します</p>
<p>ブラウザを閉じてしまった場合は既に追加されてるグループをID入力欄から手動で削除してください</p>
<br>
<a href="https://github.com/NEKODESUDX/DMID-cleaner" target="_blank">参加してないグループIDの削除と全ID取得ツール</a>
<br>
<p>このタブは必ず開いて置いてください 途中でブラウザが閉じてしまうとグループ追加が最初からやり直しになり、同じグループに追加リクエストを送ってしまうのでバグが発生します</p>
<p>ブラウザを閉じてしまった場合は既に追加されているグループをID入力欄から手動で削除してください</p>
<a href="https://github.com/NEKODESUDX/DMID-cleaner" target="_blank">参加していないグループIDの削除と全ID取得ツール</a>
<a href="https://discord.gg/DPmPdpcNqs" target="_blank">開発者サポートサーバー(discord)</a>
<br>
❤If you like this tool, please donate to the developers
<br>
BTC: 37fB226Pyoc4so7H6KVMjxWzRKeporBDfW
<br>
LTC: MSU7xJHQJzocME3xLQmtAKfow36nwhuZ9Y
<br>
❤If you like this tool, please donate to the developers
BTC: 37fB226Pyoc4so7H6KVMjxWzRKeporBDfW
LTC: MSU7xJHQJzocME3xLQmtAKfow36nwhuZ9Y
<a href="https://youtu.be/NTrzk7bxotg?si=Nd482zjloHVn6V4R" target="_blank">token取得方法(youtube)</a>
<form id="groupForm">
<label for="token">トークン:</label>
Expand All @@ -65,26 +71,29 @@ <h1>Mass Group Manager</h1>
<label for="iconUrl">アイコン画像URL:</label>
<input type="text" id="iconUrl" name="iconUrl">


<button type="button" onclick="createGroups()">グループ作成 (レートリミット10回/10分)</button>
<button type="button" onclick="sendMessage()">メッセージ送信</button>
<button type="button" onclick="addUsers()">ユーザー追加 (レートリミット10回/120秒)</button>
<label for="startDelay">ユーザー追加開始までの時間 (分後):</label>
<input type="number" id="startDelay" name="startDelay" value="0" min="0">
<label for="startDelay">ユーザー追加開始までの時間 (分後):</label>
<input type="number" id="startDelay" name="startDelay" value="0" min="0">
<button type="button" onclick="changeGroupNames()">グループ名変更</button>
<button type="button" onclick="changeGroupIcons()">グループアイコン変更</button>
</form>

<p id="status">ステータス: 準備完了</p>
<div id="errorLog">エラーログ:</div>
<script>
function logError(message) {
const errorLog = document.getElementById('errorLog');
errorLog.textContent += message + '\n';
}
window.onerror = function(message, source, lineno, colno, error) {
logError(`[Error] ${message} at ${source}:${lineno}:${colno}`);
};
</script>

<div id="errorLog">エラーログ:</div>

<script src="script.js"></script>
<script>
function logError(message) {
const errorLog = document.getElementById('errorLog');
errorLog.textContent += message + '\\n';
}

window.onerror = function(message, source, lineno, colno, error) {
logError(\`[Error] \${message} at \${source}:\${lineno}:\${colno}\`);
};
</script>
</body>
</html>

0 comments on commit cca5cf3

Please sign in to comment.