Greasy Fork is available in English.
This library prepends the script name to the console log.
بۇ قوليازمىنى بىۋاسىتە قاچىلاشقا بولمايدۇ. بۇ باشقا قوليازمىلارنىڭ ئىشلىتىشى ئۈچۈن تەمىنلەنگەن ئامبار بولۇپ، ئىشلىتىش ئۈچۈن مېتا كۆرسەتمىسىگە قىستۇرىدىغان كود: // @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);
};
}