prigoana.com/guides.html

217 lines
7.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./favicon.png">
<link rel="manifest" href="./manifest.json">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>prigoana.com</title>
<style>
a {
cursor: url(./link.cur), auto;
}
body {
user-select: none;
background-color: #000;
color: #fff;
font-family: monospace;
cursor: url(./cursor.cur), auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100vh;
margin: 0;
text-align: center;
padding-top: 20px;
}
.terminal {
margin-bottom: 20px;
}
.terminal ul {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0;
}
.terminal li {
margin: 0 15px;
}
.terminal a {
color: #fff;
text-decoration: none;
}
.terminal a:hover {
text-decoration: underline;
}
h3, h4 {
margin: 10px 0;
}
h4 {
display: inline-block;
cursor: pointer;
}
.guide {
cursor: url(./link.cur), auto;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
align-items: flex-start;
justify-content: center;
padding-top: 40px;
}
.modal-content {
background-color: #333;
padding: 20px;
border: 1px solid #fff;
width: 80%;
max-width: 600px;
text-align: left;
color: #fff;
font-size: 1rem;
overflow-y: auto;
max-height: 80%;
position: relative;
}
.modal-content img {
width: 100%;
height: auto;
margin: 10px 0;
}
.modal-content p {
margin-bottom: 15px;
}
.modal-content a {
text-decoration: underline;
color: inherit;
}
.close {
color: #fff;
font-size: 28px;
font-weight: bold;
position: absolute;
right: 20px;
top: 20px;
cursor: pointer;
}
.close:hover {
color: #ccc;
}
</style>
</head>
<body>
<div class="terminal">
<ul>
<li><a href="./">back</a></li>
</ul>
</div>
<h3>Guides</h3>
<br>
<div style="display: flex; justify-content: center; flex-wrap: wrap;">
<h4 class="guide" id="adBlockingBtn">Ad Blocking&nbsp;|&nbsp;</h4>
<h4 class="guide" id="spotifyBtn">Spotify&nbsp;|&nbsp;</h4>
<h4 class="guide" id="musDownBtn">Music Piracy</h4>
</div>
<!-- Ad Blocking Modal -->
<div id="adBlockingModal" class="modal">
<div class="modal-content">
<span class="close" id="closeAdBlockingModal">&times;</span>
<h3>Ad Blocking</h3>
<p>Install these two extensions:</p>
<p><a href="https://chromewebstore.google.com/detail/ublock-origin-lite/ddkjiahejlhfcafbddmgiahcphecmpfh">uBlock Origin Lite</a> | <a href="https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm">uBlock Origin</a></p>
<p>Go to their settings and turn on all filters.</p>
<h4>Why?</h4>
<p>Blocks ads on Spotify, YouTube, protects from malware, removes cookie pop-ups, and improves browsing speed.</p>
<h4>Trust Issues?</h4>
<p>They're open-source. Check their code: <a href="https://github.com/uBlockOrigin/uBOL-home">uBO Lite</a> | <a href="https://github.com/gorhill/uBlock">uBlock Origin</a>.</p>
</div>
</div>
<!-- Spotify Modal -->
<div id="spotifyModal" class="modal">
<div class="modal-content">
<span class="close" id="closeSpotifyModal">&times;</span>
<h3>Spotify</h3>
<p><strong>Android:</strong> Download the APK from <a href="https://github.com/Team-xManager/xManager/releases/latest">xManager</a>.</p>
<p><strong>iOS:</strong> Use this <a href="https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/latest">tweaked Spotify client</a>. Check this <a href="https://sideloading.gitbook.io/">sideloading guide</a> for instructions.</p>
<p><strong>Desktop:</strong> Windows users, run <a href="https://raw.githack.com/amd64fox/SpotX/main/Install_New_theme.bat">this PowerShell script</a>. macOS/Linux users, run: <code>bash &lt;(curl -sSL https://spotx-official.github.io/run.sh)</code></p>
<p><strong>Browser:</strong> Use the <a href="#adBlocking">Ad-Blocking guide</a>.</p>
</div>
</div>
<!-- Music Piracy Modal -->
<div id="musDownModal" class="modal">
<div class="modal-content">
<span class="close" id="closeMusDownModal">&times;</span>
<h3>Music Piracy</h3>
<h4><u>Torrenting:</u></h4>
<p>Install <a href="https://www.qbittorrent.org/download">qBittorrent</a> and search for torrents on <a href="https://1337x.to/">1337x</a>. Always use a VPN such as <a href="https://https://one.one.one.one/">Cloudflare WARP</a>.</p>
<p>Click the magnet link, check what you're downloading, deselect unwanted files, and start the download. If it has no seeds, try a different torrent.</p>
<h4><u>Downloading:</u></h4>
<p>For Spotify playlists or songs, use <a href="https://lucida.su">Lucida</a>. Paste your playlist link and download. For higher quality, use Tidal forwarding.</p>
</div>
</div>
<script>
var adBlockingModal = document.getElementById("adBlockingModal");
var adBlockingBtn = document.getElementById("adBlockingBtn");
var closeAdBlocking = document.getElementById("closeAdBlockingModal");
var spotifyModal = document.getElementById("spotifyModal");
var spotifyBtn = document.getElementById("spotifyBtn");
var closeSpotify = document.getElementById("closeSpotifyModal");
var musDownModal = document.getElementById("musDownModal");
var musDownBtn = document.getElementById("musDownBtn");
var closeMusDown = document.getElementById("closeMusDownModal");
adBlockingBtn.onclick = function() {
adBlockingModal.style.display = "flex";
}
spotifyBtn.onclick = function() {
spotifyModal.style.display = "flex";
}
musDownBtn.onclick = function() {
musDownModal.style.display = "flex";
}
closeAdBlocking.onclick = function() {
adBlockingModal.style.display = "none";
}
closeSpotify.onclick = function() {
spotifyModal.style.display = "none";
}
closeMusDown.onclick = function() {
musDownModal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == adBlockingModal) {
adBlockingModal.style.display = "none";
}
if (event.target == spotifyModal) {
spotifyModal.style.display = "none";
}
if (event.target == musDownModal) {
musDownModal.style.display = "none";
}
}
</script>
</body>
</html>