db-gn 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bookmarklet.js +1 -0
- package/index.svg +35 -0
- package/package.json +11 -0
- package/v2.html +5337 -0
package/bookmarklet.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
javascript:(function()%7Bconst%20n%20%3D%20window.open(%22about%3Ablank%22)%3B%0An.document.write('%3Ciframe%20src%3D%22https%3A%2F%2Fcdn.jsdelivr.net%2Fnpm%2Fdancing-bunnyy%40latest%2Findex.svg%22%20style%3D%22width%3A100%25%3Bheight%3A100%25%3Bborder%3A0%22%3E%3C%2Fiframe%3E')%3B%7D)()%3B
|
package/index.svg
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/1999/xhtml" style="height: 100%;">
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
<button
|
|
5
|
+
onclick=
|
|
6
|
+
"
|
|
7
|
+
const n = window.open('about:blank', '_blank');
|
|
8
|
+
if (n) {
|
|
9
|
+
fetch('./v2.html')
|
|
10
|
+
.then(response => response.text())
|
|
11
|
+
.then(text => {
|
|
12
|
+
const d = n.document;
|
|
13
|
+
d.open();
|
|
14
|
+
d.write(text);
|
|
15
|
+
d.close();
|
|
16
|
+
})
|
|
17
|
+
}
|
|
18
|
+
"
|
|
19
|
+
style=
|
|
20
|
+
"
|
|
21
|
+
width: 100%; height: 100%;
|
|
22
|
+
"
|
|
23
|
+
onmouseover=
|
|
24
|
+
"
|
|
25
|
+
this.style.backgroundColor='#ffffff'
|
|
26
|
+
"
|
|
27
|
+
onmouseout=
|
|
28
|
+
"
|
|
29
|
+
this.style.backgroundColor='#ffffff'
|
|
30
|
+
"
|
|
31
|
+
>
|
|
32
|
+
</button>
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "db-gn",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The BEST unblocked gaming website! 2000+ Games.",
|
|
5
|
+
"main": "index.svg",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "node -e \"const http=require('http'),fs=require('fs');http.createServer((req,res)=>fs.createReadStream('v2.html').pipe(res)).listen(8080,()=>console.log('Starting up http-server, serving ./\\n\\nAvailable on:\\n http://localhost:8080\\n\\nPress Ctrl+C to stop the server.'))\""
|
|
8
|
+
},
|
|
9
|
+
"author": "letrol",
|
|
10
|
+
"license": "ISC"
|
|
11
|
+
}
|