- ๋ถ๋งํฌ์ ์๋์ url์ ์ถ๊ฐํ๋ค.
`javascript:var href =$('#video-player video>source').attr('src'); var content = $ ('meta[property=og\:title]').attr('content'); if(href !== undefined){ (function(src, title){ var popupContent =$(document.createElement('div')).append( $ (document.createElement('h2')).text('%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C%EA%B0%80 %EC%A4%80%EB%B9%84%EB%90%90%EC%8A%B5%EB%8B%88%EB%8B%A4!') ).append($(document.createElement('h4')).text('%EC%95%84%EB%9E%98%EC%9D%98 %EB%A7%81%ED%81%AC%EB%A5%BC %EB%88%8C%EB%9F%AC %EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C %ED%95%98%EC%8B%AD%EC%8B%9C%EC%98%A4.') ).append( $ (document.createElement('a')).attr('href', src).attr('download', title).text('%EB%8F%99%EC%98%81%EC%83%81 %EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C') ); createPopup(popupContent, '%EB%8F%99%EC%98%81%EC%83%81 %EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C'); })(href, content); }else{ createPopup( $(document.createElement('h2')).html('%EC%98%A4%EB%A5%98!
%EB%8F%99%EC%98%81%EC%83%81 %ED%94%8C%EB%A0%88%
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var tRex = Runner.instance_.tRex; | |
tRex.direction = 1; | |
var move = function move() { | |
tRex.xPos = Math.max(Math.min(tRex.xPos + tRex.direction * 5, 500), 0); | |
}; | |
window.onkeydown = function (e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let get_xy = (x, y, radius, angle) => { | |
let rad = Math.PI / 180 * angle; | |
return { | |
x: Math.round(x + Math.cos(rad) * radius), | |
y: Math.round(y + Math.sin(rad) * radius) | |
}; | |
}; | |
let generate_flower = (x, y, radius, angle_base) => { | |
let str = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
var xhr = new XMLHttpRequest; | |
xhr.open("POST", "/api/setScore", true); | |
xhr.onreadystatechange = function(){ | |
alert(xhr.responseText); | |
}; | |
var tag = location.href.split('#')[1].split("&")[0]; | |
xhr.send("data=" + encodeURIComponent(tag) +"&score=999"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create = (r, r2, cx, cy, className) => { | |
str = ''; | |
for(let _angle = 0; _angle < 360; _angle += 30){ | |
angle = _angle * Math.PI / 180; | |
let cos = Math.cos(angle); | |
let sin = Math.sin(angle); | |
str += `<line x1="${Math.round(cx + cos * r)}" y1="${Math.round(cy + sin * r)}" x2="${Math.round(cx + cos * r2)}" y2="${Math.round(cy + sin * r2)}" class="line-outer ${className}"/>\n`; | |
} | |
console.log(str); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const draw = (width, height, text, font, fill) => { | |
const canvas = document.createElement('canvas'); | |
canvas.width = width; | |
canvas.height = height; | |
const ctx = canvas.getContext('2d'); | |
ctx.fillStyle = "#000"; | |
ctx.fillRect(0, 0, canvas.width, canvas.height); | |
ctx.fillStyle = "#fff"; |
Enter this in developer console (f12) THIS IS NOT A MALWARE! (Look at the code)
After entering it, poke someone. This script will poke automatically.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
//SVG Flat Stripe Background | |
//by Khinenw | |
//gist.github.com/HelloWorld017/6fb557767095a0e79140cb3bfbed83e7 | |
'use strict'; | |
if(location.pathname !== '/') return; | |
var themes = [[/^\d+-(02|03|04)-.+$/, ['#f8bbd0', '#f06292', '#e91e63', '#c2185b', '#880e4f']], //Haru | |
[/^\d+-(05|06|07)-.+$/, ['#ffeb3b', '#cddc39', '#8bc34a', '#4caf50', '#009688']], //Natsu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Fuck touchenkey | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Stop using touchenkey | |
// @author Khinenw | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
OlderNewer