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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin will add a checkbox on standard Salesforce debug page to display only debug statements"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Filter Only Debugs (like Developer Console) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}