-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.html
36 lines (35 loc) · 986 Bytes
/
install.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>script installation</title>
<meta name="viewport" content="width=device-width" />
<style>
body {
background-image: url("https://www.dl.dropboxusercontent.com/s/wzc5g61s2ax0705/piper.pied.png");
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
background-attachment: fixed;
background-color: #00ff00;
color: silver;
}
</style>
<script src=/detect.js></script>
</head>
<body>
<div>
<h1>1) Tampermonkey & Stay & Userscripts ?</h1>
<button style="font-size:13px;" onclick="get()">Установить скрипт 📲</button>
</div>
<script>
var get = function(){
var hash = window.location.hash.slice(1);
if (hash == "") {
} else {
window.location.href = '/PiperPied.js';
}
}
</script>
</body>
</html>