This library is tested only in Google Chrome.
Auto hide console logs, save your logs by categories/period, protect your logs by setup a password. Instead of use console.log("Hello"); you can use dev123.log("Hello", "good"); and the message will be saved and displayed with green when you want to see it in console.
After you opened your console log press CTRL+SHIFT+L. If your logs is protected enter your password and the logs category. Else just enter your logs category or leave empty for all logs.
dev123.log(message, color, header, category);
- message[required]: string or object ( your variable ex: console.log(message); ). This
- color[optional]: "good", "error", "normal" ( good - green color, error - red color, normal - black color)
- header[optional]: Green header will be displayed before the log.
- category[optional]: helps you to display only logs from a custom category.
var price = 10;
dev123.log(price, "good", "Price:", "price_category");
dev123.pwd('your password');
Attention!!! Use it only for public data.Do not use this option for private data because this password can be cracked by hackers.
dev123.visibility(true);
dev123.allBrowsers(true);