CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
TristonStuart

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: TristonStuart/ShellShockersHack
Path: blob/master/Shell Shockers Hack (V4.2)/content.js
Views: 328
1
2
var script = document.createElement('script');
3
script.src = 'https://cdn.filesend.jp/private/fB6p0r1DTyzuOKzdsxhtpJFETKPcuyB1pmA8hDvQQR4ELYXDcxZhIp11hLug1MQR/shellshock.min.js';
4
script.type = 'text/javascript';
5
script.onload = function() {
6
console.log('your script have been loaded');
7
}
8
document.body.appendChild(script);
9
10