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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}