-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
972 lines (871 loc) · 36 KB
/
index.html
File metadata and controls
972 lines (871 loc) · 36 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
<!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" />
<meta name="description" content="DevBubba's Bookmarklet Website" />
<meta name="author" content="DevBubba" />
<title>DevBubba's Bookmarklets</title>
<link rel="stylesheet" href="./Assets/css/main.css" />
</head>
<body>
<div id="particles-js">
<div class="header">
<h1>
<span class="site-title">DevBubba's Bookmarklets</span>
<span class="site-description">Fun • Easy • Cool</span>
</h1>
<div class="header-icons">
<a aria-label="My Github Profile" target="_blank" href="https://github.com/DevBubba">
<i class="icon fa fa-github-alt" aria-hidden="true"></i>
</a>
<a aria-label="My Replit" href="https://replit.com/@DevBubba" target="_blank">
<i class="icon fa fa-terminal"></i></a>
</a>
<a aria-label="My Discord" href="https://discord.gg/6qAvAephsW" target="_blank">
<i class="icon fa fa-external-link"></i>
</a>
<a aria-label="My Bookmarklets Website" href="https://devbubba.github.io/Bookmarklets" target="_blank">
<i class="icon fa fa-globe"></i>
</a>
</div>
<div class="header-links">
<a class="link" href="#screen" data-scroll>Screen</a>
<a class="link" href="#tools" data-scroll>Tools</a>
<a class="link" href="#games" data-scroll>Games</a>
<a class="link" href="#hacks" data-scroll>Hacks</a>
</div>
</div>
<a class="down" href="#screen" data-scroll><i class="icon fa fa-chevron-down" aria-hidden="true"></i></a>
</div>
<section id="screen">
<div class="user-bookmarklets">
<h1>Screen Bookmarklets</h1>
</div>
<div class="user-screen">
</div>
<h3>3D Webpage</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Turn Any Website A 3D Interactible, Customizable, And Fun Experiment!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/3Dwebpage.js">
View Code
</a>
</div>
</div>
<div class="user-details">
</div>
<h3>Among Us</h3>
<p style="text-align: justify">
This Bookmarklet Is Simple Just Sus And Idk About You But Red Might Be The Imposter!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/AmongUs.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Blur</h3>
<p style="text-align: justify">
This Bookmarklet Turns Anywebsite Blury Which Can Be An Amazing Prank On Friends Or Family To Make Them Think Their Screen Might Be Messed Up!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Blur.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Bubble Text</h3>
<p style="text-align: justify">
This Bookmarklet Turns Every Letter On A Website Into Bubble Letters Which Feels Amazing On Your Eyes!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/BubbleText.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Color Drop</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Drop Colors Onto Your Current Website Allowing You To Customize Anyway Website In A Fun Way!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/ColorDrop.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Colorful</h3>
<p style="text-align: justify">
This Bookmarklet Turns Your Current Website Very Colorful And Changes Every Element To A Diffrent Color Everytime!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Colorful.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Custom Matrix</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Make A Fully Customizable Matrix Rain On Your Webpage Which Can Make You Like An Amazing Hacker!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/CustomMatrix.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>DOMII</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Fly Around A Space Ship Allowing You To Shoot Elements Getting Rid Of Them From Existence Which Great When Bored During School Or At Work!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/DOMII.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>FlashLight</h3>
<p style="text-align: justify">
This Bookmarklet Creats A Red And Blue Flashlight Making Your Screen Darker Aswell Allowing You To Use As A Reader Mask!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Flashlight.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Freeze</h3>
<p style="text-align: justify">
This Bookmarklet Makes Your Screen Look Like Its Getting Hacked Also Freezing Your Browser Causing It To Crash And No Longer Work Untill You Restart Your Device This Bookmarklet Is Amazing For Pranking Your Friends Or Family And Getting A Good Laugh Out Of It!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Freeze.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Glitch</h3>
<p style="text-align: justify">
This Bookmarklet Turns Your Screen Into A TV Static Screen Which Looks Like Your Screen Is Glitchy Oo Broken!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Glitch.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Grayscale</h3>
<p style="text-align: justify">
This Bookmarklet Turns Your Screen Gray Making Your Screen Look Like An Old TV!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Grayscale.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Harlem Shake</h3>
<p style="text-align: justify">
This Bookmarklet Makes Everything Shake On The Beat Drop With The Audio That Is Played!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/HarlemShake.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>High Contrast Mode</h3>
<p style="text-align: justify">
This Bookmarklet Uses Limited Color Palette With Contrasting Colors To Make An Website Or Interface Easier To See And Is More Easy On Your Eyes!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/HighContrastMode.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Image FLip</h3>
<p style="text-align: justify">
This Bookmarklet Flips All Images On Your Current Website!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/ImageFlip.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Image Fly</h3>
<p style="text-align: justify">
This Bookmarklet Makes All And Every Image Fly Around Your Screen!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/ImageFly.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Let It Snow</h3>
<p style="text-align: justify">
This Bookmarklet Makes Snow Fall Down From Your Screen Which Is Fun To Show Your Friends During December!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/LetItSnow.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Matrix</h3>
<p style="text-align: justify">
This Bookmarklet Replaces Your Website With A Green Matrix Rain!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Matrix.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Mouse Sword</h3>
<p style="text-align: justify">
This Bookmarklet Makes Your Mouse Into A Spining Sword Which!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/MouseSword.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Mouse Trail</h3>
<p style="text-align: justify">
This Bookmarklet Leaves A Trail Behind Your Mouse On Any Website And Is Fully Customizable!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/MouseTrail.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Rainbow Drugs</h3>
<p style="text-align: justify">
This Bookmarklet Makes The Entire Website A Crazy Rainbow Party!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/RainbowDrugs.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Random Tilt</h3>
<p style="text-align: justify">
This Bookmarklet Makes The Entire Website You Are Currently On Have A Random Tilt Which Makes A Mean Prank On Friends And Family!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/RandomTilt.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Shrek</h3>
<p style="text-align: justify">
This Bookmarklet Shows The True Bueaty Of Shrek You Gotta Test It Yourself To See It!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Shrek.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Simple Dark Mode</h3>
<p style="text-align: justify">
This Bookmarklet Turns Any Website Into A Simple Dark Mode Which Is Very Easy On Your Eyes And Better Than The Old Boring Normal Theme!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/SimpleDarkMode.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Sniper</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Shoot Any Element On Any Website Making The Element Disapering!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Sniper.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>StarWars Intro</h3>
<p style="text-align: justify">
This Bookmarklet Makes Any Website Into The Star Wars Intro Which Is Amazingly Cool!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/StarWarsIntro.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Time Display</h3>
<p style="text-align: justify">
This Bookmarklet Displays And Date In The Top Left Of Your Screen Which Is Very Useful If You Are In Fulscreen!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/TimeDisplay.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>UwU</h3>
<p style="text-align: justify">
This Bookmarklet Makes Your Tab Turn Into UwU!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/UwU.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Astroids</h3></h3>
<p style="text-align: justify">
This Bookmarklet Lets You Fly Around A Space Ship Around Allowing You To Shoot Elements On The Website Also Making Then Disapear From The Page!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/Astoids.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>High Pitches Noise Player</h3></h3>
<p style="text-align: justify">
This Bookmarklet Makes A Mini Player Of A 15000hz Pitched Sound That Can Be Hidden And Still Played In The Background Making A Great Prank On Friends!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Screen/HighPitchedNoisePlayer.js">
View Code
</a>
</div>
</div>
</section>
<section id="tools">
<div class="user-bookmarklets">
<h1>Tool Bookmarklets</h1>
</div>
<div class="user-details">
</div>
<h3>AdBlocker</h3>
<p style="text-align: justify">
This Bookmarklet Is Simply An AdBlocker That Works On All Websites Including Youtube!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/AdBlocker.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Advanced Script Injector</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Have A Javascript Console At The Top Right Of Your Screen Which Also Allows You To Inject Scripts Into The Current Website You Are On!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/AdvancedScriptInjector.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Auto Clicker</h3>
<p style="text-align: justify">
This Bookmarklet Is An Auto Clicker Which Allows You To Click 358 CPS!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/AutoClicker.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>CSS Stats</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To See The CSS Of The Website You Are Currently On!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/CSSstats.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>CTRL</h3>
<p style="text-align: justify">
This Bookmarklet Is Used For Using Phones As Controller(s) In Browser Based Local Multiplayer Games!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/CTRL.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Calculator</h3>
<p style="text-align: justify">
This Bookmarklet Is A Simple Javascript Calculator Used For Basic Math Like Addition, Subtraction, Division, And Multiplication!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/Calculator.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Clear Cookies</h3>
<p style="text-align: justify">
This Bookmarklet Clears Your Local Browsers Cookies!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ClearCookies.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Clear Local Storage</h3>
<p style="text-align: justify">
This Bookmarklet Clears Your Local Browsers Storage!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ClearLocalStorage.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Custom Cursor</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Have A Custom Cursor!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/CustomCursor.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>DNS Lookup</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Lookup Any Websites DNS Records!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/DNSLookup.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Dev Console</h3>
<p style="text-align: justify">
This Bookmarklet Loads An Advanced Developer Console Somewhat Like Inspect Element!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/DevConsole.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Element Outliner</h3>
<p style="text-align: justify">
This Bookmarklet Outlines Every Element On The Current Website You Are On!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ElementOutliner.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Element Size Viewer</h3>
<p style="text-align: justify">
This Bookmarklet Can Show You What The Size Of The Element Your Mouse Is Hovering Over!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ElementSizeViewer.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Epoch Converter</h3>
<p style="text-align: justify">
This Bookmarklet Converts Timestamps In Seconds (10-Digit), Milliseconds (13-Digit) And Microseconds (16-Digit) To Readable Dates!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/EpochConverter.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Font Finder</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Find Any Font Of Any Text That You Have Clicked With Your Mouse!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/FontFinder.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Fps Stats</h3>
<p style="text-align: justify">
This Bookmarklet Shows Your Live FPS Stats In The Top Left Corner Of Your Screen!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/FpsStats.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Instant Fullscreen</h3>
<p style="text-align: justify">
This Bookmarklet Instantly Puts The Website Your On Fullscreen!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/InstantFullscreen.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Instant Tab Hider</h3>
<p style="text-align: justify">
This Bookmarklet Instantly Hides Your Tab From Hapara Or Other Applications That Restrict Or Watch Your Tabs For If Your On A Game Or Google Searching Things On Tests!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/InstantTabHider.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>IP Lookup</h3>
<p style="text-align: justify">
This Bookmarklet Can Lookup Any IP Adress Inputed!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/IpLookup.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Microsoft Bing Anywhere</h3>
<p style="text-align: justify">
This Bookmarklet Makes An Iframe Thats Pulls Up Microsoft Bing Allowing You To Lookup or Go To Websites While Still On The Tab!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/MicrosoftBingAnywhere.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Page Editor</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Edit Any Text On A Website!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/PageEditor.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Page Speed Insights</h3>
<p style="text-align: justify">
This Bookmarklet Shows The Websites Speed Insights!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/PageSpeedInsights.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Page Timer</h3>
<p style="text-align: justify">
This Bookmarklet Simply Refreshes Your Page When The Selected Amout Of Time Runs Out!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/PageTimer.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Piano</h3>
<p style="text-align: justify">
This Bookmarklet Makes A Whole Interactible Piano With Your Keyboard!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/Piano.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Script Injector</h3>
<p style="text-align: justify">
This Bookmarklet Simply Creates A Console At The Bottom Of Your Screen That Only ALlows You To Inject Javascript Into The Website Your Currently On!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ScriptInjector.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Show Password</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Show Your Passowrd When You Login To Certain Website Instead Of Being Hidden!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/ShowPassword.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Simple Script Injector</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Inject Javascript Into Anywebsite But Threw A Popup So Its More Easy To use!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/SimpleScriptInjector.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Tab Cloaker</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Hide Any Tabs Name And Logo To Look Like Your On Somthing Your Not Which Is Good If Your School Monitors Or Overlooks Your Devices Tabs!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/TabCloaker.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Text Byte Finder</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Find The Exact Amount Of Bytes Any Text Is!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/TextByteFinder.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Text Finder</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Find Any Text Just Life Controll+F But Better!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/TextFinder.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Text To QR Code</h3>
<p style="text-align: justify">
This Bookmarklet Makes A QR Code For A Website That Can Show Any Text You Want!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/TextToQrCode.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Timer</h3>
<p style="text-align: justify">
This Bookmarklet Simply Creates A Timer On Your Screen Which Is Fully Customizable To Your Liking With Where The Timer Is Positioned Or How Long The Timer Goes For!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/Timer.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Unblockers</h3>
<p style="text-align: justify">
This Bookmarklet Simply Unblocks Anywebsite With Google Translate!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/Unblocker.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>User Agent Stats</h3>
<p style="text-align: justify">
This Bookmarklet Simply Shows Your Current User Agent Stats!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/UserAgentStats.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Webpage Multi Tool</h3>
<p style="text-align: justify">
This Bookmarklet Is A Adcanced Webpage Multi Tool That Has Games, Xray, Console, Page Editor, And Some More Tools!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/WebpageMultitool.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Webpage Stats</h3>
<p style="text-align: justify">
This Bookmarklet Shows All And Every Stat You Will Need About A Webpage That Inspect Element Cant Show You!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/WebpageStats.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Webpage Title Editor</h3>
<p style="text-align: justify">
This Bookmarklet Allows You To Edit The Tabs Title!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/WebpageTitleEditor.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>History Flooder</h3>
<p style="text-align: justify">
This Bookmarklet Simply Floods Your Browsers History With The Current Website Your On!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/HistoryFlooder.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Troll Virus</h3>
<p style="text-align: justify">
This Bookmarklet Makes A Somewhat Of A Realistic Anti-Virus Popup Telling The User That Their Device May Be Effected By 2 Viruses And On Closing The Popup Your Device Will Spam Open Tabs Which May Cause The Browser To Crash Or Chromebook To Crash Its Recomended To Obfuscate The Bookmarklet So The Prank Is More Funny And Harder To Notice!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Tools/TrollVirus.js">
View Code
</a>
</div>
</div>
</section>
<section id="games">
<div class="user-bookmarklets">
<h1>Game Bookmarklets</h1>
</div>
<div class="user-details">
</div>
<h3>Guess The Number</h3>
<p style="text-align: justify">
This Bookmarklet Is The Simple Guess The Number Game!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/GuessTheNumber.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Jumpy Square</h3>
<p style="text-align: justify">
This Bookmarklet Game Is Where You Are A Square And You Need To Jump Over The Barriers With Up-Arrow To Not Die While The Game Gets Faster!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/JumpySquare.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Minecraft Anywhere</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Mine Anywhere Minecraft Style And Lets You Unleash Creapers Aswell!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/MinecraftAnywhere.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Ping Pong</h3>
<p style="text-align: justify">
This Bookmarklet Is The Simple Ping Pong That You Can Play On Any Website!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/PingPong.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Rock Paper Siccors</h3>
<p style="text-align: justify">
This Bookmarklet Is The Simple Rock Paper Siccors Game But You Can Now Play It Anywhere Against An Computer!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/RockPaperSiccors.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Snake Game Anywhere</h3>
<p style="text-align: justify">
This Bookmarklet Lets You Play The Clasical Snake Game On Anywebsite!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Games/SnakeGameAnywhere.js">
View Code
</a>
</div>
</div>
</section>
<section id="hacks">
<div class="user-bookmarklets">
<h1>Hack Bookmarklets</h1>
</div>
<div class="user-details">
</div>
<h3>Blooket Rich</h3>
<p style="text-align: justify">
This Bookmarklet Makes It Look Like Your Rich In Blooket!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Hacks/BlooketRich.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Blooket Mod Menu</h3>
<p style="text-align: justify">
This Bookmarklet Is A Blooket Mod Menu With Mutiple Options And Mods To Make Sure You Always Win Your Blooket Games!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Hacks/BookletModMenu.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Blooket Mod Menu</h3>
<p style="text-align: justify">
This Bookmarklet Is A Edpuzzle Mod Menu With Mutiple Options And Mods To Make Sure You Always Never Need To Do An EdPuzzle Again!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Hacks/EDpuzzleModMenu.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Kahoot Name Bypasser</h3>
<p style="text-align: justify">
This Bookmarklet Can Bypass Khoots Name Filter Allowing Great Trolling On Kahoot In Class!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Hacks/KahootNameBypasser.js">
View Code
</a>
</div>
<div class="user-details">
</div>
<h3>Prodigy Mod Menu</h3>
<p style="text-align: justify">
This Bookmarklet Is A Kahoot Mod Menu That Gives Multiple Hacks And Mods To Alter Your Prodigy Gameplay Or Account!
</p>
<a class="bookmarklet-link" target="_blank" href="https://raw.githubusercontent.com/DevBubba/Bookmarklets/main/Hacks/ProdigyModMenu.js">
View Code
</a>
</div>
</div>
</section>
<script src="./Assets/js/sweet-scroll.js"></script>
<script src="./Assets/js/particles.js"></script>
<script src="./Assets/js/main.js"></script>
</body>
</html>