Greasy Fork is available in English.
This library prepends the script name to the console log.
Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/559379/1716612/console-with-scriptname.js
const console = {};
for (let name of ['log', 'debug', 'info', 'warn', 'error']) {
console[name] = function (...args) {
const prefix = `[${GM_info.script.name}]`;
window.console[name](prefix, ...args);
};
}