Console Tools

A library for shortened console.log, console.info, console.error

Цей скрипт не слід встановлювати безпосередньо. Це - бібліотека для інших скриптів для включення в мета директиву // @require https://update.greasyfork.org/scripts/19894/248918/Console%20Tools.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/*
 * name         Console Tools
 * namespace    pxgamer
 * version      0.2
 * description  A library for shortened console.log, console.info, console.error
 * author       pxgamer
 */

function cl(variable) {
    'use strict';

    console.log(variable);
}
function ci(variable) {
    'use strict';

    console.info(variable);
}
function ce(variable) {
    'use strict';

    console.error(variable);
}
function cw(variable) {
    'use strict';

    console.warn(variable);
}
function ct(variable) {
    'use strict';

    console.trace(variable);
}
function cc() {
    'use strict';

    console.clear();
}