Clickb8io art script

'=' to max out drawing cursor

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Clickb8io art script
// @namespace    http://tampermonkey.net/
// @version      1.01
// @description  '=' to max out drawing cursor
// @author       meatman2tasty
// @match        http://clickb8.io/*
// @grant        none
// ==/UserScript==

document.addEventListener("keydown", function(a) { // press 'x' to fill chat
    if (a.keyCode == 187) {
        mainContext.lineWidth = 2000;
    }
}, false);

var imageLoader = document.createElement('input');
imageLoader.type = "file"
imageLoader.addEventListener('change', handleImage, false);
var canvas = document.getElementById('thumbnailPaintCanvas');
var ctx = canvas.getContext('2d');
function handleImage(e){
    var reader = new FileReader();
    reader.onload = function(event){
        var img = new Image();
        img.onload = function(){
            canvas.width = img.width;
            canvas.height = img.height;
            ctx.drawImage(img,0,0);
        }
        img.src = event.target.result;
    }
    reader.readAsDataURL(e.target.files[0]);     
}
document.getElementById('createVideoContainer').appendChild(imageLoader);