PrettifyMyWebApi for Microsoft Dataverse

Open any record in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!

PrettifyMyWebApi for Microsoft Dataverse란 무엇입니까?

PrettifyMyWebApi for Microsoft Dataverse은(는) kiredevsandhacks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open any record in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

PrettifyMyWebApi for Microsoft Dataverse 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        All of your records can be quickly viewed and edited! Even when fields are not available on any form. Quickly view and edit Power Automate Flow definitions.

How to use:
- Click the extension button when viewing a form to open the current record in the Dataverse Web Api and prettify the output!
- When viewing a 'solution-aware' flow in make.powerautomate.com, use the extension to open it in the Dataverse Web Api. Click the Edit Flow button in the top right to edit your flow definition! This is very convenient for renaming actions/variables or as a last measure for working around bugs, when the default flow UI just doesn't want to cooperate (Power Automate developers will relate to this).
- When already viewing a record or query in the Dataverse Web Api, just use the extension to prettify!

You no longer need to open your solutions to view the values for your Option Sets/Choices. Simply open the record and prettify the output.

Browse to related records for quick insights using the 'Preview' button on lookup columns.

Update columns of a record by using the 'Edit this record' feature. Update text columns, Option Sets, numbers, lookups, etc. Very convenient for modifying data that is not available on a form. You also have the option to impersonate other users, skip custom plugins and skip Power Automate Flows when updating a record.

Quickly copy the contents of a column to your clipboard by hovering and clicking the copy button.

You can prettify single records, but also the results of your OData and FetchXml queries.                    

확장 프로그램 기본 정보

이름 PrettifyMyWebApi for Microsoft Dataverse PrettifyMyWebApi for Microsoft Dataverse
ID pcgbnpkpijlcjeleijaaahlonafdlfno
공식 URL https://chromewebstore.google.com/detail/prettifymywebapi-for-micr/pcgbnpkpijlcjeleijaaahlonafdlfno
설명 Open any record in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!
파일 크기 1.55 MB
설치 횟수 982
현재 버전 1.0.5.3
최근 업데이트 2024-02-19
출시 날짜 2022-10-04
평점 5.00/5 총 6 개의 평점
개발자 kiredevsandhacks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kiredevsandhacks/PrettifyMyWebApi
도움말 페이지 URL https://github.com/kiredevsandhacks/PrettifyMyWebApi
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PrettifyMyWebApi for Microsoft Dataverse",
    "version": "1.0.5.3",
    "description": "Open any record in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!",
    "manifest_version": 3,
    "author": "Erik Donker",
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "eventHandler.js",
                "libs\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dynamics.com\/api\/data\/*"
            ],
            "js": [
                "prettifyWebApi.js"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}