Salesforce Debug Log viewer

Search and view the filtered Salesforce debug logs

Salesforce Debug Log viewerとは何ですか?

Salesforce Debug Log viewerはMehaboob Mによって開発されたChromeの拡張機能で、その主な機能は「Search and view the filtered Salesforce debug logs」です。

拡張機能のスクリーンショット

screenshot
screenshot

Salesforce Debug Log viewer拡張機能のCRXファイルをダウンロード

Salesforce Debug Log viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Productivity tool allowing the Salesforce/Vlocity developers and administrators to filter the Salesforce debug logs.
- The tool can be used for any log file viewed from the Salesforce 'Debug Logs' screen
- Allows for filtering the number of lines instead of having to navigate through entire logs
- String based search and return of lines before and after the line of interest
- Include/option based of type of logs of interest Eg: User Debug statements
- Custom search within the log file specific string match
- Filtering options to exclude detailed logging statements especially System Entry/Exit, Heap Allocation etc
- Display Salesforce governor limits usage from logs
- Tool has been tested for files up to 20MB in size (generally the maximum size for Salesforce debug logs)
- Log file is not required to be downloaded                    

拡張機能の基本情報

名前 Salesforce Debug Log viewer Salesforce Debug Log viewer
ID hkjclebibhoolmdkpahfndidllgbkalg
公式URL https://chromewebstore.google.com/detail/salesforce-debug-log-view/hkjclebibhoolmdkpahfndidllgbkalg
説明 Search and view the filtered Salesforce debug logs
ファイルサイズ 24.87 KB
インストール数 1,557
現在のバージョン 0.5
最終更新日 2020-06-13
公開日 2020-06-13
評価 2.50/5 合計 2 レビュー
開発者 Mehaboob M
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Debug Log viewer",
    "version": "0.5",
    "description": "Search and view the filtered Salesforce debug logs",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png",
            "256": "images\/icon256.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    }
}