-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 3.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>AARR emoji</title>
<meta name="description" content="emojiツール">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="blue">
<meta property="og:title" content="AARR emoji">
<meta property="og:description" content="emojiツールです">
<meta property="og:image" content="https://i.imgur.com/JTkB9AC.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<br>
<h1>Discord emoji beta</h1>
<p>
Note:<br>
このツールは開発中であり新機能の"エクスプレッションを作成"権限にまだ対応しきれていません。リリースまでお待ちください
カンマ "," を使って区切る事で複数の絵文字名と画像URLを指定出来ます<br>
絵文字名と画像URLの数と順番を一致させてください<br>
GIF画像は不安定で、追加できない場合もあります(修正予定)<br>
テンプレートリンクを新しく作成するかリンクから読み取るボタンで絵文字を共有できます (tokenやサーバーIDは共有されません)<br>
</p>
<a href="https://github.com/NEKODESUDX/DMID-cleaner" target="_blank">参加していないグループIDの削除と全ID取得ツール</a>
<a href="https://discord.gg/DPmPdpcNqs" target="_blank">開発者サポートサーバー(discord)</a>
<a href="https://youtu.be/NTrzk7bxotg?si=Nd482zjloHVn6V4R" target="_blank">token取得方法(youtube)</a>
<a href="https://nekodesudx.github.io/DM/" target="_blank">グループ追加ツール(github)</a>
<a href="https://discord.com/oauth2/authorize?client_id=1308581985421361233&permissions=0&integration_type=0&scope=bot" target="_blank">絵文字ID取得bot(discord bot)</a>
<form id="emojiForm">
<label for="token">Token:</label>
<input type="text" id="token" name="token" required>
<br><br>
<label for="guildId">サーバーID (Guild ID):</label>
<input type="text" id="guildId" name="guildId" required>
<br><br>
<label for="emojiNames">絵文字名 (英数字/_):</label>
<input type="text" id="emojiNames" name="emojiNames">
<br>
<label for="emojiUrls">絵文字URL (PNG/JPG/GIF):</label>
<input type="text" id="emojiUrls" name="emojiUrls" required>
<br><br>
<button type="button" onclick="addEmojis()">絵文字を追加(1個/20秒)</button>
<button type="button" onclick="addEmojisWithoutNames()">名前指定なしで追加</button>
<br>
</form>
<label for="shareLink">テンプレート共有リンク:</label>
<button type="button" onclick="copyShareLink()">コピー</button>
<input type="text" id="shareLink">
<button type="button" onclick="generateShareLink()">絵文字共有(テンプレートリンクの作成)</button>
<button type="button" onclick="readFromTemplateLink()">リンクから読み取る</button>
<br><br>
<div id="status">ステータス: 準備完了</div>
<script src="script.js"></script>
</body>
If you like this tool, please donate to the developers BTC: 37fB226Pyoc4so7H6KVMjxWzRKeporBDfW LTC: MSU7xJHQJzocME3xLQmtAKfow36nwhuZ9Y
</html>