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)?

Filter Only Debugs (like Developer Console)是由Kaushik Ray开发的Chrome扩展程序,该扩展的主要功能是“This plugin will add a checkbox on standard Salesforce debug page to display only debug statements”。

扩展截图

screenshot
screenshot

下载Filter Only Debugs (like Developer Console)扩展crx文件

下载Filter Only Debugs (like Developer Console)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Filter Only Debugs (like Developer Console) Filter Only Debugs (like Developer Console)
ID keionapkjghibjkgahdffddnlclmgeml
官方URL https://chromewebstore.google.com/detail/filter-only-debugs-like-d/keionapkjghibjkgahdffddnlclmgeml
简介 This plugin will add a checkbox on standard Salesforce debug page to display only debug statements
文件大小 76.44 KB
安装次数 38
当前版本 1.2
更新时间 2016-03-03
上架时间 2016-03-03
评分 5.00/5 共3次评分
开发者 Kaushik Ray
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}