Discord Console Tricks (Experiments, Dev Stuff, etc)
INSTRUCTIONS FOR ALL OF THEM:
- Open DevTools in Discord with
CTRL + SHIFT + i
(ONLY POSSIBLE IN CANARY AND PBT ANYMORE)- Paste Snippet
- Edit it. (optional: if instructed)
- Hit Enter.
// ==UserScript== | |
// @name GitHub Repo Delete Name Copy | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Automatically write the repo name in the confirm field | |
// @author NullDev | |
// @match https://github.com/**/**/settings | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
// @grant none | |
// ==/UserScript== |
- Open DevTools in Discord with
CTRL + SHIFT + i
(ONLY POSSIBLE IN CANARY AND PBT ANYMORE)- Paste Snippet
- Edit it. (optional: if instructed)
- Hit Enter.
// ==UserScript== | |
// @name Hide Google Ads | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hide google ads in search results | |
// @author NullDev | |
// @match https://www.google.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
// @grant none | |
// ==/UserScript== |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
<title>Rebane's Discord Colored Text Generator</title> | |
<meta charset="UTF-8"> | |
<meta name="description" content="Rebane's Discord Colored Text Generator"> | |
<meta name="author" content="rebane2001"> | |
<style> | |
/* |
function sq(A){ | |
let B = A / 2; | |
let p = 0; | |
let i = 0; | |
for (;;){ | |
++i; | |
B = A / B + B; | |
B = B / 2; |
This bookmarklet automatically converts the current GitHub Repo URL to the GitHub.io Page.
javascript:(()=>{const{href:a}=window.location;if(a.startsWith("https://github.com/")){const b=(a.split("/").pop()||"").split("#")[0];if(b){const c=(a.split("/")[3]||"").split(".")[0];c&&(window.location.href=`https://${c}.github.io/${b}`)}}})();
// ==UserScript== | |
// @name Anti Cursor Change | |
// @namespace NullDev | |
// @version 0.1 | |
// @description Enforces default cursor style on all websites | |
// @author NullDev | |
// @match * | |
// @icon https://images.pling.com/cache/400x400/img/00/00/47/77/78/1538515/82a44a0c5f553ced10a4faae866093786ae516770da1a7e69f8458e1c4f05637c2e3.png | |
// @grant none | |
// ==/UserScript== |
for(i=p=2;i<1e6;i+=2)p*=i*i/(i*i-1);console.log(p) |
import { OrbitControls } from "https://cdn.jsdelivr.net/npm/three@0.121.1/examples/jsm/controls/OrbitControls.js"; | |
// DEMO: https://jsfiddle.net/NullDev/8bjt60p9/ | |
const numberOfPoints = 1500; | |
const radiusOfSphere = 30; | |
const getFibonacciSpherePoints = function(samples = 1, radius = 1){ | |
const points = [] | |
const offset = 2 / samples |
Es wird entweder die TamperMonkey Extension für Chrome oder die GreaseMonkey Extension für FireFox benötigt.
Zum installieren, hier klicken.
Von TheShad0w