-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
28 lines (25 loc) · 1.43 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="userselected">Words Search</h1>
<audio id="pronunciation" type="audio/mp3" autoplay></audio>
<div id="url_box">
<div class="box">
<a class="dict" id="dict_cb" href="https://dictionary.cambridge.org/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E-%E6%BC%A2%E8%AA%9E-%E7%B9%81%E9%AB%94/" target="_blank">Cambridge</a><br>
<a class="dict" id="dict_lm" href="https://www.ldoceonline.com/dictionary/" target="_blank">Longman</a><br>
<a class="dict" id="dict_col" href="http://www.freecollocation.com/search?word=" target="_blank">Collocation</a><br>
<a class="dict" id="dict_syn" href="https://www.thesaurus.com/browse/" target="_blank">Synonym</a><br>
</div>
<div class="box">
<a class="search" id="google_eng" lang="英文" href="http://www.google.com/search?q=" target="_blank">英文</a><br>
<a class="search" id="google_chi" lang="中文" href="http://www.google.com/search?q=" target="_blank">中文</a><br>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script charset="utf-8" src="popup.js"></script>
</body>
</html>