落書きできるJavascript

以下は、任意のページで実行すると、お絵描きができます。

実行コード

javascript:function executeScript(url) { fetch(url) .then(data => data.text()) .then(text => { const scriptFunction = new Function(text); scriptFunction(); }); } executeScript("https://raw.githubusercontent.com/hirotomoki12345/hamanan/main/draw.js");

©Psannetwork.com