-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.js
43 lines (42 loc) · 2.74 KB
/
import.js
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
37
38
39
40
41
42
43
var sjsInjection = document.createElement("div")
sjsInjection.innerHTML = `
<div style="display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */" id="sjsSetModal"><div style="display: block; position: fixed; z-index: 1; left: 0px; top: 0px; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4);"><div style="margin: 15% auto; background: white; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); text-align: center; box-sizing: border-box; border-radius: 10px; width: 50%; border: 2px solid blue;padding: 20px;">
<span style="color: red; float: right; font-size: 28px; font-weight: bold; cursor:pointer;" onclick="sjsSetModal.style.display = 'none'">×</span>
<img src="https://sync-js.pages.dev/icon.png" style="margin:auto"><br>
<button onclick="sjs.backUp()" style="transition: ease 150ms; background: #46b063; border: none; border-radius: 3px; width: 70%; height: 50px;">Back Up</button>
<br>
<button onclick="sjs.restore()" style="transition: ease 150ms; background: #46b063; border: none; border-radius: 3px; width: 70%; height: 50px;">Restore</button>
</div>
</div>
`;
document.documentElement.appendChild(sjsInjection);
var sjs = {
showDot: function() {
var sjsInjection = document.createElement("div")
sjsInjection.innerHTML = `
<div style="position: fixed;right:50px;bottom:50px;"><img src="https://sync-js.pages.dev/icon.png" width="20" style="border: 5px solid rgba(0, 0, 0, 0.45);border-radius:20px;cursor:pointer;" onclick="sjs.openDialog()" title="sync.js" /></div>
`;
document.documentElement.appendChild(sjsInjection);
},
backUp: function(custom) {
try {
var lsdata = {}
if (custom) {
Object.keys(custom).forEach(function(k) {
lsdata[custom[k]] = localStorage.getItem(custom[k])
})
} else {
lsdata = localStorage
}
window.open("https://sync-js.pages.dev/backup?fromURL=" + btoa(location.href) + "&data=" + btoa(JSON.stringify(lsdata)).replaceAll("+",atob("JTJC")),"","width=500,height=900")
} catch(err) {
alert(err)
}
},
restore: function() {
var sjswin123 = window.open("https://sync-js.pages.dev/get?url=" + btoa(location.href),"","width=500,height=900"); window.addEventListener("message",(event) => {var sjsSYSjson = JSON.parse(event.data); Object.keys(sjsSYSjson).forEach(function (k) {localStorage.setItem(k,sjsSYSjson[k])}); location.reload()},false);
},
openDialog: function() {
sjsSetModal.style.display = 'block'
}
}