Allows running JS code using URL
// ==UserScript==
// @name Run JS in URL | EN
// @namespace http://tampermonkey.net/
// @version 0.3
// @description Allows running JS code using URL
// @author Belogvardeec
// @license MIT
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function executeCodeFromUrl() {
const urlParams = new URLSearchParams(window.location.search);
const code = urlParams.get('console');
if (code) {
try {
const decodedCode = decodeURIComponent(code);
eval(decodedCode); // using eval to execute code
} catch (error) {
console.error('Error:', error);
}
}
}
// Execute the main function
executeCodeFromUrl();
console.log('JS in URL has been launched');
})();