Skip to content
This repository has been archived by the owner on May 23, 2022. It is now read-only.

Commit

Permalink
Adding links
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasresende committed Apr 21, 2022
1 parent ad755ef commit e3b285a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
20 changes: 19 additions & 1 deletion popup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</head>
<body>
<header>
<h3>Monitor Swapnex</h3>
<h3>Monitor Swapnex v0.0.4</h3>
</header>

<header style="background-color: #999;">
Expand Down Expand Up @@ -90,6 +90,24 @@ <h3>
</form>
</header>

<header style="background-color: #ccc;">
<h3>
<span>Tutoriais:</span>
</h3>

<form style="display: block;">
<a href="https://bit.ly/calculadora-swapnex" class="btn" target="_BLANK">Calculadora Swapnex</a>
</form>
<form>
<a href="https://bit.ly/swapnex-modo-manual" class="btn" target="_BLANK">Modo Manual</a>
<a href="https://bit.ly/swapnex-modo-automatico" class="btn" target="_BLANK">Modo Automático</a>
<a href="https://bit.ly/swapnex-ativar-2fa" class="btn" target="_BLANK">Ativar 2FA:</a>
<a href="https://bit.ly/swapnex-desativar-2fa" class="btn" target="_BLANK">Desativar 2FA:</a>
<a href="https://bit.ly/swapnex-deposito" class="btn" target="_BLANK">Depósito:</a>
<a href="https://bit.ly/swapnex-saque" class="btn" target="_BLANK">Saque:</a>
</form>
</header>

<script type="text/javascript" src="../jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="../chromeUtils.js"></script>
<script type="text/javascript" src="popup.js"></script>
Expand Down
21 changes: 21 additions & 0 deletions popup/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,24 @@ button:hover {
background-color: #fff;
color: #000;
}


a.btn {
font-family: system-ui;
padding: 4px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
/*background-color: #fff;*/
background-color: #357edd;
border: 1px solid #ccc;
border-radius: 10px;
transition: 0.5s background-color;
color: #fff;
font-size: 10px;
}
a.btn:hover {
font-family: system-ui;
background-color: #fff;
color: #000;
}

0 comments on commit e3b285a

Please sign in to comment.