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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kiredevsandhacks และคุณลักษณะหลักของมันคือ "Open any record in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PrettifyMyWebApi for Microsoft Dataverse

ดาวน์โหลดไฟล์ส่วนขยาย PrettifyMyWebApi for Microsoft Dataverse ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}