Userscript Logger Pro

Professional logging system for userscripts with history, colored labels and emoji support. Centralized logger for all your scripts.

2025/10/26のページです。最新版はこちら

このスクリプトは単体で利用できません。右のようなメタデータを含むスクリプトから、ライブラリとして読み込まれます: // @require https://update.greatest.deepsurf.us/scripts/553735/1684007/Userscript%20Logger%20Pro.js

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
作者
MaxScorpy
バージョン
1.0.0
作成日
2025/10/26
更新日
2025/10/26
大きさ
7.02KB
ライセンス
MIT

DESCRIPTION:

Professional logging system for userscripts with colored console output, emoji support and log history. Centralized logger for all your scripts.

Userscript Logger Pro - Beautiful and powerful logging library for userscripts

Features

🎨 Colored Console Output - Different colors for debug, info, success, warning, error 🎭 Emoji Support - Customizable emoji for visual script identification 📚 Log History - Stores logs in memory with timestamps 🔍 Filtering - Get logs by level or export to JSON 🌐 Universal - Works with all userscript managers 📦 Zero Dependencies - Lightweight standalone library

Quick Start

// Add to your script header:
// @require https://greatest.deepsurf.us/scripts/YOUR_SCRIPT_ID/code/Userscript%20Logger%20Pro.user.js

const logger = window.MaxScorpyLogger.createLogManager({
    scriptName: 'MY-SCRIPT',
    emoji: '🚀'
});

logger.info('Script started');
logger.success('Task completed');
logger.error('Error occurred', errorObject);

Advanced Usage

// Get log history
const logs = logger.getHistory();

// Get only errors
const errors = logger.getLogsByLevel('error');

// Export to JSON
const json = logger.exportLogs();

Log Levels

🔍 debug (purple) | ℹ️ info (blue) | ✅ success (green) | ⚠️ warning (orange) | ❌ error (red)

Why Use This?

✅ Centralized logging for all your scripts ✅ Beautiful colored console output ✅ Developer-friendly simple API ✅ Production-ready with history and filtering ✅ Zero overhead, lightweight and fast

Tips

  1. Use different emoji for each script for easy visual identification
  2. Use logger.debug() for development only
  3. Export logs to JSON for detailed error analysis
  4. Track errors with logger.getLogsByLevel('error')

📌 LICENSE: MIT

📌 CATEGORY: ☑ Developer Tools

📌 TAGS: logging, logger, debug, console, developer-tools, library, utility