-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (131 loc) · 4.82 KB
/
index.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Irfan Shadik Rishad" />
<meta
name="description"
content="Enables dark-mode in the Leading University, Sylhet. website. Also increases the CGPA 🐱 in local device."
/>
<meta
name="keywords"
content="cat chrome extension by irfanshadikrishad,chrome extension by irfanshadikrishad,irfanshadikrishad, 𝘾𝙖𝙩 — 𝘾𝙝𝙧𝙤𝙢𝙚 𝙚𝙭𝙩𝙚𝙣𝙨𝙞𝙤𝙣 𝙗𝙮 𝙞𝙧𝙛𝙖𝙣𝙨𝙝𝙖𝙙𝙞𝙠𝙧𝙞𝙨𝙝𝙖𝙙, irfanshadik, leading university sylhet bangladesh"
/>
<meta name="robots" content="index,follow" />
<title>𝘾𝙖𝙩 — 𝘾𝙝𝙧𝙤𝙢𝙚 𝙚𝙭𝙩𝙚𝙣𝙨𝙞𝙤𝙣 𝙗𝙮 𝙞𝙧𝙛𝙖𝙣𝙨𝙝𝙖𝙙𝙞𝙠𝙧𝙞𝙨𝙝𝙖𝙙</title>
<link rel="stylesheet" href="./src/style.css" />
<link rel="shortcut icon" href="./images/icon128.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="container">
<nav>
<section>
<a href="/" class="nav_logo">Cat</a>
</section>
<section class="nav_btns">
<a id="changelog_open" onclick="changelogOpen()"
><i class="fa-solid fa-clock-rotate-left"></i> Changelog</a
>
<a id="version_Url" class="version_nav" target="_blank">
<i class="fa-solid fa-code-compare"></i> <span id="version">???</span>
</a>
</section>
</nav>
<section class="hero">
<img class="cat__logo" src="./images/icon128.png" alt="" />
<h1 class="cat__title">Cat — Chrome extension</h1>
<p class="cat__body">
Chrome extension for
<span class="cat__hl"
><a href="https://www.lus.ac.bd" target="_blank"
>Leading University, Sylhet</a
></span
>
website. It changes the views and behavior of the website. Have low
<span style="font-style: italic">CGPA?</span> dont't worry I got you
covered. show it to your friends or family to impress 👌. additionaly
you got the
<span
style="
background-color: var(--secondary);
color: var(--text-color);
font-style: italic;
padding: 0 5px;
"
>dark mode.</span
>
</p>
<center>
<div class="cat__download">
<img
src="./images/cat.png"
alt="cat__popup"
id="cat__i"
draggable="false"
/>
<a
id="download"
href="https://github.com/irfanshadikrishad/cat/archive/refs/tags/v1.0.7.zip"
class="cat__down"
onclick="thanks()"
onmouseover="mouseover()"
onmouseout="mouseout()"
ontouchmove="mouseover()"
ontouchend="mouseout()"
><i class="fa-solid fa-chevron-down"></i> Download<span
id="download_Count"
>?</span
>
</a>
</div>
<p id="cat__thanks" class="cat__desc">
[thanks for using cat extension 💙]
</p>
</center>
</section>
<section class="footer">
<p class="cat__desc">
©
<a
class="cat__hl"
href="https://irfanshadikrishad.github.io"
target="_blank"
>Irfan Shadik Rishad</a
>, 24 April, 2023 - <span id="current_year">now</span>
</p>
<p class="footer_divider">|</p>
<div class="footer_links">
<a target="_blank" href="https://github.com/irfanshadikrishad"
><i class="fa-brands fa-github"></i
></a>
<a target="_blank" href="https://youtube.com/@irfanshadikrishad"
><i class="fa-brands fa-youtube"></i
></a>
<a target="_blank" href="https://instagram.com/irfanshadikrishad"
><i class="fa-brands fa-instagram"></i
></a>
<a target="_blank" href="https://www.linkedin.com/in/irfanshadikrishad"
><i class="fa-brands fa-linkedin"></i
></a>
</div>
</section>
<section id="changelog_popper">
<div class="changelog_header">
<h1>Changelog</h1>
<button id="changelog_close" onclick="changelogClose()">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<p id="changelog_insert"></p>
</section>
<script src="./src/script.js"></script>
</body>
</html>