-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
37 lines (37 loc) · 990 Bytes
/
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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Hide GitHub Events</title>
<link rel="stylesheet" href="popup.css" />
<script src="filters.js"></script>
</head>
<body>
<div class="container">
<div class="headline">
<img src="/images/32.png" alt="Logo" width="32px" />
<span> Hide GitHub PR Events </span>
</div>
<hr />
<div>
<p>
This plugin filters certain Github PR events from the PR timeline using below regex
phrases
</p>
<div class="filterContainer" id="filterData"></div>
</div>
</div>
<footer>
Powered by M&S.
<a target="_blank" href="https://github.com/marksandspencer/tidy-pr-timelines-extension"
>Contribute here</a
>
|
<a
target="_blank"
href="https://github.com/marksandspencer/tidy-pr-timelines-extension/issues"
>Raise Issue</a
>
</footer>
<script src="popup.js"></script>
</body>
</html>