db-gn 1.0.5 → 1.0.7

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/README.md ADDED
@@ -0,0 +1,89 @@
1
+ ![Dancing Bunny](animation.gif)
2
+
3
+ # Dancing Bunny Games Network
4
+
5
+ A lightweight browser-based games network with multiple launch methods, tab cloaking, bookmarklets, Data URI launching, favorites, search, and a multi-tab interface.
6
+
7
+ ---
8
+
9
+ ## Overview
10
+
11
+ Dancing Bunny Games Network is a fully client-side HTML application designed around portability and multiple launch methods.
12
+
13
+ The project includes:
14
+
15
+ * Multi-tab game interface
16
+ * Search system
17
+ * Favorites system
18
+ * Autoclicker
19
+ * Bookmarklet launcher
20
+ * NPM svg launcher
21
+ * New tab cloaking
22
+
23
+ The project currently contains access to over **2608 games**.
24
+
25
+ ---
26
+
27
+ ## Demo
28
+
29
+ # https://ltorl.github.io/dancing-bunny/v2.html
30
+
31
+ ---
32
+
33
+ ## Launch Methods
34
+
35
+ ---
36
+
37
+ ### NPM svg
38
+
39
+ ```text
40
+ https://cdn.jsdelivr.net/npm/db-gn@latest/index.svg
41
+ ```
42
+
43
+ This probably wont be blocked because it would break real school sites
44
+
45
+ ---
46
+
47
+ ### HTML
48
+
49
+ Copy and run the HTML directly:
50
+
51
+ ```text
52
+ https://raw.githubusercontent.com/ltorl/dancing-bunny/refs/heads/main/index.html
53
+ ```
54
+
55
+ #### Instructions
56
+
57
+ 1. Open the raw HTML file
58
+ 2. Copy the source
59
+ 3. Paste into:
60
+ *
61
+ * W3Schools Tryit
62
+ * Code.org Web Lab
63
+ * OneCompiler
64
+ 4. Run the page
65
+
66
+ ---
67
+
68
+ ### Bookmarklet
69
+
70
+ ```text
71
+ https://raw.githubusercontent.com/ltorl/dancing-bunny/refs/heads/main/bookmarklet.js
72
+ ```
73
+
74
+ #### Instructions
75
+
76
+ 1. Open the bookmarklet source
77
+ 2. Copy the code
78
+ 3. Create a new bookmark
79
+ 4. Paste the code into the bookmark URL field
80
+ 5. Run from any webpage (ex: google.com)
81
+
82
+ ---
83
+
84
+ ## License
85
+
86
+ Licensed under the GNU General Public License v3.0.
87
+
88
+ ---
89
+
package/animation.gif ADDED
Binary file
package/index.svg CHANGED
@@ -20,17 +20,10 @@
20
20
  "
21
21
  style=
22
22
  "
23
- width: 100%; height: 100%;
24
- "
25
- onmouseover=
26
- "
27
- this.style.backgroundColor='#ffffff'
28
- "
29
- onmouseout=
30
- "
31
- this.style.backgroundColor='#ffffff'
23
+ width: 100%; height: 100%; font-size: 16pt; font-family: 'Comic Sans MS', sans-serif;
32
24
  "
33
25
  >
26
+ click here
34
27
  </button>
35
28
 
36
29
  <script>
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "db-gn",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "The BEST unblocked gaming website! 2000+ Games.",
5
5
  "main": "index.svg",
6
6
  "scripts": {
7
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
8
  },
9
- "author": "letrol",
10
- "license": "ISC"
9
+ "author": "letrol"
11
10
  }