Debug Doctor(beta)

Debug Doctor(beta)

什麼是Debug Doctor(beta)?

Debug Doctor(beta)是由Gagandeep Kainth開發的Chrome擴展程式,該擴展的主要功能是“Debug Doctor(beta)”。

擴展截圖

screenshot
screenshot
screenshot

下載Debug Doctor(beta)擴展crx文件

下載Debug Doctor(beta)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension enables log comparison for Debug Logs generated within Salesforce. This helps the Salesforce Developers to quickly spot the execution differences and resolve issues faster.

This is NOT a Salesforce.com product. 

IN NO EVENT SHALL DEVELOPER BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DEVELOPER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

DEVELOPER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". DEVELOPER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.                    

擴展基本資訊

名稱 Debug Doctor(beta) Debug Doctor(beta)
ID apjnffafndghchieklahijnaonmnbkdj
官方網址 https://chromewebstore.google.com/detail/debug-doctorbeta/apjnffafndghchieklahijnaonmnbkdj
簡介 Debug Doctor(beta)
檔案大小 573 KB
安裝次數 207
目前版本 0.1.04
更新時間 2022-06-07
上架時間 2022-05-04
評分 5.00/5 共 1 次評分
開發者 Gagandeep Kainth
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Debug Doctor(beta)",
    "version": "0.1.04",
    "description": "Debug Doctor(beta)",
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/processor.js",
                "js\/manual_processor.js",
                "manualcompare.html",
                "index.html",
                "usage.html"
            ],
            "matches": [
                "https:\/\/*.my.salesforce.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/constants.js",
                "js\/content.js",
                "js\/global.js",
                "js\/cmprjs\/codemirror.min.js",
                "js\/cmprjs\/mergely.js"
            ],
            "matches": [
                "https:\/\/*.my.salesforce.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ],
            "css": [
                "styles\/style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "https:\/\/*.my.salesforce.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/*",
        "https:\/\/*.lightning.force.com\/*"
    ],
    "permissions": [
        "storage",
        "cookies",
        "tabs",
        "webNavigation"
    ]
}