Nice, you found the surprise website!

Here are some bookmark shortcuts you can do! All of this can be untriggered with a refresh!

____________________________________________________________________


Inspect Element

  • Create a new bookmark folder called Nabil Developers.
  • Along that folder, create a bookmark called Inspect.
  • Put this code as the URL for the bookmark:
  •   
    javascript: document.body.contentEditable = 'true';
    document.designMode = 'on';
    void 0
      
  • Next, create another bookmark called Reverse Inspect.
  • Put this code as the URL for the bookmark:
  •   
    javascript: document.body.contentEditable = 'false';
    document.designMode = 'on';
    void 0
      
  • Now you have inspect element on your chromebook.
    To use click the bookmark called Inspect and edit the page you want to edit, then if you want to stop editing but want to keep the changes, click Reverse Inspect.
  • ____________________________________________________________________


    No Mouse

  • Create a new bookmark in the Nabil Developers folder called “No Mouse.”
  • Put this code as the URL for the bookmark:
  •   
      javascript: (function() {
        var x = document.getElementsByTagName("*");
        for (i = 0; i < x.length; i++) {
            x[i].style.cursor = "none"
        };
    }());
    
      
  • If you want to activate it, simply click on the bookmark. It will make your cursor disappear.
  • Do this to your friends, it will annoy them a lot LOL.
  • ____________________________________________________________________


    Black Hole

  • Create a new bookmark in the Nabil Developers folder called “Black Hole.”
  • Put this code as the URL for the bookmark:
  •   
    javascript: (function() {
        var x = document.getElementsByTagName("*");
        for (i = 0; i < x.length; i++) {
            x[i].style.position = "absolute";
            x[i].style.top = "50%";
            x[i].style.left = "50%";
            x[i].style.transition = "5s";
            x[i].style.transform = "translate(-50%, -50%)"
        }
    }());
    
      
  • If you want to activate it, simply click on the bookmark. It will make all objects of your screen go in the middle.
  • ____________________________________________________________________


    Tornado

  • Create a new bookmark in the Nabil Developers folder called “Tornado.”
  • Put this code as the URL for the bookmark:
  •   
    javascript: (function() {
        document.documentElement.style.transitionDuration = "60s";
        document.documentElement.style.transitionTimingFunction = "ease-in";
        document.documentElement.style.transform = "rotate(360000deg)";
    }());
      
  • If you want to activate it, simply click on the bookmark. It will make your screen go in barrel rolls!



  • Credit to Ky-mani for the idea. - NabilAFK© Copyright 2021