Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
/ hideJs Public archive

A minimal Js Module, used to hide your source code. Hide context menu, source-code, disable inspector, Image dragging and many more...

License

Notifications You must be signed in to change notification settings

LevelUpInc/hideJs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

hideJs

A minimal Js Module, Used to hide your source code

How to Use ?

// import hideJs
import { hideJs } from "./hideJs.mjs"
const module = new hideJs();
  1. Hide Context Menu
...
module.hideContext();
  1. Hide Source (ctrl + U)
...
module.hideSource();
  1. Hide Console (ctrl + J or ctrl + I)
...
module.hideConsole();
  1. Hide Elements (ctrl + C)
...
module.hideElements();
  1. Hide DevTool

note: if you call this function you don't need to call module.hideSource(); , module.hideConsole(); and module.hideElements();

module.hideDevTool();
  1. Disable Image Dragging
...
module.hideImageDrag();
  1. Disable Select
...
module.disableSelectAll();
  1. Disable All
...
module.Neutral();
  1. Disable Page Download (ctrl + s)
module.disableDownloadPage();

Custom (Beta)

import { hideJs } from "./hideJs.mjs"
const module = new hideJs();
module.disable([
    "context",  // disable context menu
    "source",   
    "console",  
    "elements", 
    "dev_tool", 
    "image_drag",
    "select",
    "all"      // disable all
])

About

A minimal Js Module, used to hide your source code. Hide context menu, source-code, disable inspector, Image dragging and many more...

Topics

Resources

License

Stars

Watchers

Forks