Dynamics 365 Record Counter

Dynamics 365 Web Api based counter for both OData query and Fetch XML based and other tools.

Dynamics 365 Record Counter란 무엇입니까?

Dynamics 365 Record Counter은(는) Antony Krithikesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dynamics 365 Web Api based counter for both OData query and Fetch XML based and other tools."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dynamics 365 Record Counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Dynamics 365 Web Api based counter for both Odata query and Fetch XML based. Metadata Browser Tool lets you easily browse form events and you can also look at the WebResources in a monaco editor(currently just read only).

1.3.0 -  Error Alerts added, css fixes for dialog window

2.1.0 - Added tools for Metadata Browser and Plugin sdk steps

3.0.0 - Total Record Counter and Advanced Find Tools. Bug fix for counter as the activity entities were not working as expected.

3.1.0 - Added RetrieveTotalRecordCount  support to get all count and also the capability to refresh the data on an interval bases

4.0.0 - Added Plugin Trace Log Viewer and some minor query adjustments

4.0.1 - Added Security Role Checker Tool - which provides User Roles, Teams and Associated Team Roles

Read Me  - https://github.com/Antos2310/Dynamics365Counter

Advanced Find Tool Read me - https://github.com/Antos2310/Dynamics365Counter/blob/master/Advanced%20Find%20Tools.md

Demo Videos - https://www.youtube.com/watch?v=k5aPFchdLw0
https://www.youtube.com/watch?v=gzNojVlGUy0                    

확장 프로그램 기본 정보

이름 Dynamics 365 Record Counter Dynamics 365 Record Counter
ID geobmjmakjccalfehblbmelcacioonfo
공식 URL https://chromewebstore.google.com/detail/dynamics-365-record-count/geobmjmakjccalfehblbmelcacioonfo
설명 Dynamics 365 Web Api based counter for both OData query and Fetch XML based and other tools.
파일 크기 477 KB
설치 횟수 265
현재 버전 4.0.1
최근 업데이트 2023-10-03
출시 날짜 2020-05-18
평점 5.00/5 총 1 개의 평점
개발자 Antony Krithikesh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Antos2310/Dynamics365Counter
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dynamics 365 Record Counter",
    "author": "Antony Krithikesh",
    "description": "Dynamics 365 Web Api based counter for both OData query and Fetch XML based and other tools. ",
    "version": "4.0.1",
    "permissions": [
        "activeTab",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.dynamics.com\/api\/*",
        "*:\/\/*.dynamics.com.mcas.ms\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Dynamics Counter.",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "mainmethods.js",
                "counterdialog.css",
                "AttributeMetadata.html",
                "attribute.js",
                "PluginSteps.html",
                "pluginsteps.js",
                "TotalRecordCounter.html",
                "TotalRecordCounter.js",
                "PluginTraceLogApp.html",
                "PluginTraceLogApp.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts;script-src 'self' https:\/\/ajax.googleapis.com https:\/\/unpkg.com;  object-src 'self'"
    },
    "manifest_version": 3,
    "incognito": "split"
}