Filter Only Debugs (like Developer Console)

This plugin will add a checkbox on standard Salesforce debug page to display only debug statements

Filter Only Debugs (like Developer Console) là gì?

Filter Only Debugs (like Developer Console) là một tiện ích mở rộng Chrome được phát triển bởi Kaushik Ray, và tính năng chính của nó là "This plugin will add a checkbox on standard Salesforce debug page to display only debug statements".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Filter Only Debugs (like Developer Console)

Tải xuống các tệp mở rộng Filter Only Debugs (like Developer Console) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        What is new V 1.2
- Fixed bug https://github.com/KaushikRay/Chrome-SF-FIlterDebugs/issues/1

Complete repo - https://github.com/KaushikRay/Chrome-SF-FIlterDebugs

This plugin is very helpful in filtering only debug statements out of complete debug log.
This works similar to Developer Console Debug only checkbox but on Salesforce org detailed debug logs.

You need to open the debug logs detail page and new checkbox will be by default present.

Limitations - nothing known yet.

Future - 
1. Give alert if debug logs are skipped

Please feel free to let me know any enhancements over comments.

Help in Idea - Fazle Abbas                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Filter Only Debugs (like Developer Console) Filter Only Debugs (like Developer Console)
ID keionapkjghibjkgahdffddnlclmgeml
URL Chính Thức https://chromewebstore.google.com/detail/filter-only-debugs-like-d/keionapkjghibjkgahdffddnlclmgeml
Mô tả This plugin will add a checkbox on standard Salesforce debug page to display only debug statements
Kích Thước Tệp 76.44 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-03-03
Ngày Phát Hành 2016-03-03
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Kaushik Ray
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Only Debugs (like Developer Console)",
    "description": "This plugin will add a checkbox on standard Salesforce debug page to display only debug statements",
    "version": "1.2",
    "page_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "jquery-1.12.1.min.js",
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "tabs",
        "*:\/\/*.salesforce.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}