Hello! Welcome to Tecky AaryaN.
Safelink in Blogger
A Safelink in Blogger is a tool used to secure your download links by redirecting users through an intermediate page. This page can display ads or additional content before redirecting users to the final download link. It helps protect your links from being copied or misused and can also generate revenue if ads are included.
Advantages of Safelink
- Protects Your Links: Prevents direct access to your main download links.
- Increases Ad Revenue: You can display ads on the intermediate page.
- Improves Security: Reduces the risk of link abuse or spamming.
- Tracks Traffic: Helps analyze visitor activity before reaching the main content.
Disadvantages of Safelink
- Affects User Experience: Extra steps may frustrate users.
- Reduced Trust: Users may avoid your site if they feel misled.
- Slower Access: Adds time before the final download.
You can see the demo here⤵
Safelink For Blogger Website
Step 1: Go to your
Blogger Dashboard
Step 2: Copy the following code and create a page named Timer.
<!-- Timer and Timer Progress Text --> <div class="timer-container" id="timerText">Your link is ready in <span id="timer">15s</span></div> <!-- Complete Message --> <h2 id="completeMessage">Complete!</h2> <h1>Check links and files</h1> <br /><div>This site provides various free content for internet users. Here external links are prepared for downloads, please note that you need to wait 30 seconds to check the name of the requested file and the download link.</div> <div>We use Google Drive, Mediafire, and MEGA servers to upload the various files available on the site. After checking and preparing the requested file, the download link will be displayed for the user to download.</div> <h2 style="text-align: left;">How do I upload files?</h2> <div> <ul style="text-align: left;"> <li>Wait 30 seconds to check the link</li> <li>After the countdown ends, click on (link is ready)</li> <li>Finally, the direct download of the required file will start.</li> </ul> </div> <!-- Go to Link Button --> <center><button id="goToLinkButton" class="button go-to-link-button" onclick="goToLink()">Go to Link</button><center> <style>.timer-container{font-size:18px;margin-bottom:30px;text-align:center;font-family:'Roboto',sans-serif}.button{display:none;padding:15px 30px;background-color:black;color:white;width:100%;border:none;border-radius:25px;cursor:pointer;font-size:18px;margin-top:20px;transition:background-color 0.3s ease}#completeMessage{display:none;color:blue;font-size:24px;text-align:center}</style> <script> // Function to set timer duration function getTimerDuration() { return 15; // Timer duration in seconds } </script><script src="https://cdn.jsdelivr.net/gh/Aaryan-sah/timer@main/min.js"></script>
Step 3: Now, create a new page named Safelink Generator. Copy the following code and paste it. Then, go back, copy the Timer Page link, and replace ENTER_TIMER_PAGE_LINK
with the copied link.
<!-- Safelink Generator Style --> <style>.button,.button:focus{outline:0}#copyButton{display:none}input[type=text]{width:100%;padding:12px;margin:10px 0;border-radius:8px;border:1px solid #ccc;font-size:16px;box-sizing:border-box;transition:border-color .3s,box-shadow .3s}input[type=text]:focus{border-color:#4caf50;outline:0;box-shadow:0 0 8px rgba(72,186,88,.5)}.button{background-color:#007bff;color:#fff;border:none;padding:12px 20px;font-size:16px;border-radius:25px;box-shadow:0 4px 6px rgba(0,0,0,.1);cursor:pointer;transition:.3s}.button:hover{background-color:#0056b3;box-shadow:0 6px 8px rgba(0,0,0,.2);transform:scale(1.05)}.button:active{background-color:#004085;box-shadow:0 2px 4px rgba(0,0,0,.2);transform:scale(1)}</style> <!-- Safelink Generator --> <h2>Safelink Generator<h2/> <div> <label for="userUrl">Enter URL to encrypt:</label> <input type="text" id="userUrl" placeholder="Enter URL here" /> <input type="text" id="generatedUrl" readonly placeholder="Encrypted URL will appear here" /> <!-- Buttons --> <button class="button" onclick="generateEncryptedUrl()">Generate</button> <button class="button" id="copyButton" onclick="copyUrl()">Copy URL</button> <button class="button" id="goToLinkButton" style="display: none;" onclick="goToLink()">Go to Link</button> </div> <script> // Timer page base URL const TIMER_PAGE_BASE_URL = "ENTER_TIMER_PAGE_LINK"; </script><script src="https://cdn.jsdelivr.net/gh/Aaryan-sah/Safelink-gen@main/min.js"></script>
Step 4: Now, cross-check everything, then click on the Publish button to publish the post and check if it works.