-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.tsx
105 lines (103 loc) · 3.76 KB
/
options.tsx
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import extListIcon from 'data-base64:./assets/ext_list_icon.png'
import pin from 'data-base64:./assets/pin.png'
import addedIcon from 'data-base64:./assets/added_icon.png'
import addedPanel from 'data-base64:./assets/added_panel.png'
function NewTab() {
return (
<>
<div style={{ fontSize: '18px' }}>
<p>(日本語版が下にあります)</p>
<p>Thank you for installing me🎉</p>
<p>
Please <strong>follow just four steps as below</strong>, for the sake
of your new tab experience!!🦖
</p>
<p>
<strong>
1. Open the extension list by clicking the below "jigsaw puzzle"
icon at the top right of this window.
</strong>
</p>
<img style={{ width: '200px' }} src={extListIcon}></img>
<p>
<strong>
2. Find the item of this extension from the list, and clicking the
icon of "pin".
</strong>
</p>
<img style={{ width: '340px', marginBottom: '20px' }} src={pin}></img>
<br></br>
<p>
<strong>
Now, you can find the icon of this extension fixed at the top right
of this window.
</strong>
</p>
<img style={{ width: '300px' }} src={addedIcon}></img>
<p>
<strong>
3. Click the added icon, and you can find the sidepanel opened!
</strong>
</p>
<img style={{ width: '500px' }} src={addedPanel}></img>
<p>
<strong>
4. Refresh this page, and you can find the sidepanel displays the
tab list!
</strong>
</p>
<p>
We know you may have some inconvenience while using this extension.
Please look forward to much improvement!!
</p>
<p>
Ofcourse, this onboarding page will be much more nicer in the future✌
</p>
</div>
<hr />
<div style={{ fontSize: '18px' }}>
<p>(日本語版が下にあります)</p>
<p>インストールしてくださりありがとうございます🎉</p>
<p>下記の4つの手順にしたがって、新しいタブの世界へいきましょ〜!🦖</p>
<p>
<strong>
1.
このウィンドウの右上にあるジグソーパズルのアイコンを押して、拡張のリストを表示して下さい
</strong>
</p>
<img style={{ width: '200px' }} src={extListIcon}></img>
<p>
<strong>
2.
リストの中にあるこの拡張の欄の、ピンのアイコンをクリックして下さい
</strong>
</p>
<img style={{ width: '340px', marginBottom: '20px' }} src={pin}></img>
<br></br>
<p>
<strong>この拡張のアイコンが右上に追加されたはずです</strong>
</p>
<img style={{ width: '300px' }} src={addedIcon}></img>
<p>
<strong>
3.
追加されたアイコンをクリックしてください。サイドバーが画面の右に追加されます!
</strong>
</p>
<img style={{ width: '500px' }} src={addedPanel}></img>
<p>
<strong>
4. このページを更新して下さい!サイドバーにタブが表示されます!
</strong>
</p>
<p>
いろいろな不便がまだまだあるかと思います。しかし、すべてのびしろです!いまはまだご容赦下さい👶
</p>
<p>
もちろんこのスタートページも、いつかもう少しだけマシになる予定です。お楽しみに✌
</p>
</div>
</>
)
}
export default NewTab