forked from JamieFarrelly/PokeGone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
30 lines (28 loc) · 890 Bytes
/
options.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
<!-- -
FilterBubble - Options Page
Allows user to adjust filtration settings.
-->
<!DOCTYPE html>
<html>
<head>
<title>Options for FilterBubble</title>
</head>
<body>
<div style="text-align:center">
<h2>Words to filter</h2>
<textarea id="blacklist" rows="10" cols="30"></textarea>
<div id="status"></div>
<button id="save">Save</button>
<hr />
<div>Created by <a href="http://github.com/asmaier">Andreas Maier</a>.
<div>Based on
<a href="https://github.com/RobSpectre/Trump-Filter">Trump Filter</a>,
<a href="https://github.com/JamieFarrelly/PokeGone">PokeGone</a>,
<a href="https://chrome.google.com/webstore/detail/trump-blocker/nhmckipmafnikgjnaeadpngccggobaej">Trump
Blocker</a>
</div>
<div>This work is licensed under <a href="http://www.gnu.org/licenses/gpl.html">GPLv3</a>.</div>
</div>
<script type="text/javascript" src="js/options.js"></script>
</body>
</html>