Skip to content

Instantly share code, notes, and snippets.

View Raz-js's full-sized avatar
🌴
On vacation

Raz Raz-js

🌴
On vacation
  • works alone
  • home
View GitHub Profile
@Raz-js
Raz-js / discord_javascript_documentation.md
Last active May 31, 2024 21:44
Discord Javascript Documentation

How To Open Discord Console

  1. Press CTRL + SHIFT + I (Developer Tools)
  2. Click on "Console"
  3. Clear the console image
  4. Now you can use the js snippets below by simply pasting them and pressing ENTER or editing some of the variables first depends on the snippet

If CTRL + SHIFT + I don't work:

Discord now disables the developer console by default :(
To fix this, go to %appdata%/discord/settings.json and set this variable to true:

@Raz-js
Raz-js / Snapchat_Web_Documentation.md
Last active November 19, 2022 19:53
Snapchat-Web Javascript Documentation

Remove Blur and ViewBlock when snapchat isn't focused

let stylescss = document.createElement('style');
stylescss.type = 'text/css';
stylescss.innerText = `.MibAa{visibility:visible!important;}.IBqK8{filter:blur(0px)!important;}.ejVI4{display:none;}`;
document.head.appendChild(stylescss);

Snapchat Blue Theme

@Raz-js
Raz-js / right-tr.gif
Created September 2, 2022 06:23 — forked from black/right-tr.gif
R I G H T
right-tr.gif
@Raz-js
Raz-js / left-tr.gif
Created September 2, 2022 06:23 — forked from black/left-tr.gif
L E F T
left-tr.gif
@Raz-js
Raz-js / Basic_Devtools_Scripts.md
Last active August 14, 2023 18:53
Basic Scripts to make your life easier

Fetch code from a source/cdn link

fetch("URL").then((res) => res.text().then((t) => eval(t)))

Timed Debugger

setTimeout(function(){debugger;},3000);
@Raz-js
Raz-js / Discord-Bot-Invite-Grabber.html
Created June 23, 2022 16:30
Grab Discord Bot's Invites using just their id
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="description" content="A small calculator that generates Discord OAuth invite links"> <meta name="author" content="abalabahaha"> <meta name="keywords" content="Discord, bot, permissions, api"> <link rel="icon" type="image/ico" href="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/RedDot.svg/1200px-RedDot.svg.png" /> <title>Get Any Bot's Invite Link!</title> <style>@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:local("Roboto"),local("Roboto-Regular"),url(font/roboto-v16-latin-regular.woff2) format("woff2"),url(font/roboto-v16-latin-regular.woff) format("woff")}body,html{height:100%;width:100%;margin:0;outline:0;padding:0;font-family:Roboto,sans-serif;font-size:16px}body{background-color:#2c2f33;color:#ddd}h3{color:#fff;font-weight:400}a.disabled{color:#999;cursor:not-allowed}a{color:#fff}.light{backgrou
@Raz-js
Raz-js / Discord-Toolkit-V1.js
Last active November 9, 2022 09:09
Obfusticated Version Of Discord Toolkit (V1) [Outdated]
const _0x375d62=_0x5ca6;(function(_0x55b3c8,_0x2bf2a9){const _0x580383=_0x5ca6,_0x1b7b81=_0x55b3c8();while(!![]){try{const _0x16555c=-parseInt(_0x580383(0x21f))/0x1+-parseInt(_0x580383(0x1e5))/0x2+parseInt(_0x580383(0x1eb))/0x3+parseInt(_0x580383(0x1ef))/0x4*(parseInt(_0x580383(0x235))/0x5)+-parseInt(_0x580383(0x1dd))/0x6+parseInt(_0x580383(0x20b))/0x7+-parseInt(_0x580383(0x23d))/0x8*(parseInt(_0x580383(0x23b))/0x9);if(_0x16555c===_0x2bf2a9)break;else _0x1b7b81['push'](_0x1b7b81['shift']());}catch(_0x5bf69a){_0x1b7b81['push'](_0x1b7b81['shift']());}}}(_0x457e,0x951a8));const _0x33a95e=_0x498b;function _0x457e(){const _0x1e2ea1=['unshift','35eKRkUv','\x0a<button\x20class=\x22button-12Fmur\x20enabled-9OeuTA\x20button-f2h6uQ\x20lookBlank-21BCro\x20colorBrand-I6CyqQ\x20grow-2sR_-F\x22><div\x20class=\x22contents-3ca1mk\x22><svg\x20fill=\x22#00FFFF\x22\x20xmlns=\x22http://www.w3.org/2000/svg\x22\x20\x20viewBox=\x220\x200\x2024\x2024\x22\x20width=\x2224px\x22\x20height=\x2224px\x22><path\x20d=\x22M14,11.02c-0.52,0-0
@Raz-js
Raz-js / HTML-Discord-Webhook-Spammer.html
Created June 23, 2022 16:25
Discord Webhook Spammer Written in HTML (Configurable)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webhook Spammer (DSC)</title>
</head>
<body>
<br class="webpropss">Webhook Spammer By Raz</br>
<input id="kk" value="Webhook URL"></input>
@Raz-js
Raz-js / Chrome-Dino.md
Created June 22, 2022 19:50
Link : 'chrome://dino' (Some Cheat For It)

/* I did not make all these scripts. */

Hack Google Chrome and Make your Dinosaur Immortal

The game can be hacked pretty easily, making your dinosaur not even flinch at the sight of a cactus.

@Raz-js
Raz-js / Discord-CSP-Bypass.js
Last active June 27, 2022 11:13
Csp Bypass for Discord Scripting
document.body.appendChild(Object.assign(document.createElement("script"), {
src: "https://github.com/script.js",
nonce: document.querySelector("[nonce]").nonce,
onerror: console.error
}))