Skip to content

Instantly share code, notes, and snippets.

View myalcin81's full-sized avatar

Mustafa Yalçın myalcin81

View GitHub Profile
(function() {
const copyToClipboard = str => {
const el = document.createElement('textarea');
el.value = str;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
document.body.appendChild(el);
el.select();
@myalcin81
myalcin81 / nss.js
Last active December 2, 2020 06:58 — forked from omarkurt/nss.js
// ==UserScript==
// @name NC
// @namespace http://sahvemat.com
// @version 0.9
// @description try to take over the world!
// @author You
// @updateURL https://gist.githubusercontent.com/myalcin81/27b280713e7c20afc595734e8a32d4e9/raw/nss.js
// @match https://www.netsparkercloud.com/*
// @match https://*.netsparker.cloud/*
// @require http://code.jquery.com/jquery-latest.js