-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 2.54 KB
/
index.html
File metadata and controls
60 lines (58 loc) · 2.54 KB
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
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>ツイートにぶら下がってるユーザーを取得するやつ</title>
<link href="./style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<div class="col-md-12">
<div class="page-header">
<h1>ツイートにぶら下がってるユーザーを取得するやつ</h1>
</div>
</div>
<div class="col-md-12">
<a
id="share-button"
href="https://twitter.com/share"
class="twitter-share-button"
data-url="https://mysticdoll.com/replyTreeView"
data-via="MysticDoll"
data-size="large">Tweet</a>
</div>
<div class="col-md-12">
<h2>How to use</h2>
<h3>Fetch</h3>
<ol>
<li>ツイートのURLを入力</li>
<li>ボタンを押す</li>
</ol>
<h3>Export</h3>
<ol>
<li>ブロックしたいユーザーにチェックを入れる</li>
<li>ボタンを押す</li>
</ol>
<h3>Block (on Twitter.com)</h3>
<ol>
<li><a href="https://twitter.com/settings/blocked" target="_blank">Twitterのブロック設定画面</a>を開く</li>
<li><strong>詳細設定オプション(プライバシー設定)</strong>から<strong>リストをインポート</strong>する</li>
</ol>
</div>
<div class="col-md-12">
<div class="form">
<div class="form-group">
<label>URL</label> <input class="form-control" id="tweet-url">
</div>
<button class="btn btn-success" id="fetcher">Fetch</button>
</div>
</div>
<div class="col-md-12" style="margin: 10px auto;" id="app-container">
</div>
</div>
<script src="./js/main.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</body>
</html>