Skip to content

Commit fc4410e

Browse files
authored
Add files via upload
1 parent 5fa7817 commit fc4410e

File tree

2 files changed

+131
-0
lines changed

2 files changed

+131
-0
lines changed

index.html

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Kilobytes to Gigabytes</title>
8+
</head>
9+
<body>
10+
11+
<style>
12+
13+
:root {
14+
--bgcolor: red;
15+
16+
}
17+
h1, h2, h3{
18+
text-align: center;
19+
color: var(--bgcolor);
20+
}
21+
input#bkgurl {
22+
width: 100%;
23+
padding: 10px;
24+
border-radius: 7px;
25+
border: none;
26+
outline: none;
27+
margin: 10px;
28+
border-bottom: 2px solid var(--bgcolor);
29+
background: none;
30+
}
31+
input#bkgurl:active{
32+
33+
}
34+
button#bklgenerate {
35+
width: 200px;
36+
height: 35px;
37+
border: 1px solid var(--bgcolor);
38+
outline: none;
39+
border-radius: 10px;
40+
margin-bottom: 20px;
41+
margin: 0 auto;
42+
display: flex;
43+
align-items: center;
44+
justify-content: center;
45+
cursor: pointer;
46+
}
47+
.divoutbklresult{
48+
position: relative;
49+
width: 100%;
50+
height: auto;
51+
}
52+
53+
54+
textarea#outbklresult {
55+
width: 100%;
56+
height: auto;
57+
position: relative;
58+
border-radius: 10px;
59+
margin-top: 34px;
60+
outline: none;
61+
padding: 10px;
62+
border:2px solid var(--bgcolor);
63+
background: none;
64+
}
65+
66+
.divoutbklresult .copyoutput{
67+
position: absolute;
68+
width: 80px;
69+
height: 30px;
70+
padding: 5px;
71+
border-radius: 8px;
72+
background: var(--bgcolor);
73+
right: 0px;
74+
top: 0px;
75+
outline: none;
76+
border: none;
77+
cursor: pointer;
78+
color: white;
79+
font-weight: bold;
80+
}
81+
82+
83+
84+
</style>
85+
86+
<h1>Kilobytes to Gigabytes</h1>
87+
88+
89+
<h2>After giving the link to your website below, click on Generate.</h2>
90+
<input id="bkgurl" value="https://www.yourwebsite.com" type="text" placeholder="Your URL "> <button id="bklgenerate">Generate</button> <br>
91+
<div style="display: none;" class="tabledata"> </div>
92+
<div class="tabledata2"> </div>
93+
<h3>Wait a while after clicking Generate. Since the code of 5000+ links will be executed, it will take some time.</h3>
94+
<h3>If do not close the page that automatically open every backlink page With a break of 3 seconds.</h3>
95+
<h2>Copy all Code from the box below and make a webpage in online </h2>
96+
97+
<div class="divoutbklresult">
98+
<button class="copyoutput">Copy code </button>
99+
<textarea id="outbklresult" width="100%" height="auto" name="" id="" cols="30" rows="10"></textarea>
100+
</div>
101+
102+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
103+
<script src="script.js"></script>
104+
105+
<script src="https://www.mrlaboratory.info/feeds/posts/summary?orderby=published&max-results=1&alt=json-in-script&callback=mycallback"></script>
106+
</body>
107+
</html>

script.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
function apendmmr(){
3+
$("#outbklresult").val('<!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"><title>Google backlink maker for by mr laboratory </title></head><body><h1> Rediect backlink for <a href="'+$("#bkgurl").val()+'">'+$("#bkgurl").val()+'</a> by <a href="https://www.example.com/">Example</a></h1>'+mrmakeblinkmr($("#bkgurl").val())+mritem10+'<p>Rediect backlink for <a href="'+$("#bkgurl").val()+'">'+$("#bkgurl").val()+'</a> by <a href="https://www.mrlaboratory.info/">MR Laboratory</a></p> </body></html>');}
4+
function mrdataapnd(d){$(".tabledata").append(d); };
5+
function mrmakeblinkmr(u){
6+
var r='<a target="_blank" href="https://www.fudbal91.com/tz.php?zone=America/Iqaluit&amp;r=' + u + ' "> https://www.fudbal91.com/tz.php?zone=America/Iqaluit&amp;r=' + u + ' </a> <a target="_blank" href="https://edusearch.ir/Goto.aspx?url=' + u + ' "> https://edusearch.ir/Goto.aspx?url=' + u + ' </a>';
7+
return r; }
8+
9+
$(".divoutbklresult .copyoutput").on("click",function(){ navigator.clipboard.writeText($(".divoutbklresult textarea").val());
10+
$(".divoutbklresult .copyoutput").html("Copyed");
11+
})
12+
13+
14+
15+
// for(var i = 0; i < $(".mrrrm a").length ; i++) {
16+
// (function(index) {
17+
// setTimeout(function() {
18+
// var u = $(".mrrrm a:eq("+index+")").attr('href');
19+
// var popupwin = window.open(u,'anyname','width=300,height=300,right=10,bottom=10');
20+
// $(".tabledata2").append("<a href='"+u+"'>"+u+"</a></br>");
21+
// setTimeout(function() { popupwin.close();}, 2000);
22+
// }, index*2000);
23+
// })(i);
24+
// }

0 commit comments

Comments
 (0)