D365 Ribbon Debug Activator

Activates the ribbon debug option in Dynamics 365.

什么是D365 Ribbon Debug Activator?

D365 Ribbon Debug Activator是由WareTec IT Solutions GmbH开发的Chrome扩展程序,该扩展的主要功能是“Activates the ribbon debug option in Dynamics 365.”。

扩展截图

screenshot

下载D365 Ribbon Debug Activator扩展crx文件

下载D365 Ribbon Debug Activator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Simple add on to activate the ribbon debug flag in your browser. Just keep it activated and the command checker menu item will always be shown.                    

扩展基本信息

名称 D365 Ribbon Debug Activator D365 Ribbon Debug Activator
ID kgnaiefijckpjhabkealidfglbbclooa
官方URL https://chromewebstore.google.com/detail/d365-ribbon-debug-activat/kgnaiefijckpjhabkealidfglbbclooa
简介 Activates the ribbon debug option in Dynamics 365.
文件大小 13.97 KB
安装次数 72
当前版本 1.2
更新时间 2022-03-29
上架时间 2022-03-21
评分 5.00/5 共2次评分
开发者 WareTec IT Solutions GmbH
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/waretec-it/D365RibbonDebugActivator
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "D365 Ribbon Debug Activator",
    "description": "Activates the ribbon debug option in Dynamics 365.",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.crm1.dynamics.com\/*",
                "https:\/\/*.crm2.dynamics.com\/*",
                "https:\/\/*.crm3.dynamics.com\/*",
                "https:\/\/*.crm4.dynamics.com\/*",
                "https:\/\/*.crm5.dynamics.com\/*"
            ],
            "js": [
                "ribbon-debug-activator.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}