Toolshed for Power Platform / Dynamics 365

Utility Bot for Power Platform / Dynamics 365 Developers and Admins

ما هو Toolshed for Power Platform / Dynamics 365؟

Toolshed for Power Platform / Dynamics 365 هو إضافة Chrome تم تطويرها بواسطة Root16، والميزة الرئيسية لها هي "Utility Bot for Power Platform / Dynamics 365 Developers and Admins".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Toolshed for Power Platform / Dynamics 365

قم بتنزيل ملفات الامتداد Toolshed for Power Platform / Dynamics 365 بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Toolshed for Power Platform / Dynamics 365 is an easy to use and incredibly helpful tool for Power Platform / Dynamics 365 Developers and Admins. Easily execute short commands that return a quick response from the extension. Commands such as showing hidden form fields, enabling fields, showing attribute schema names, the record ID, and entity type code.

Execute basic natural language query to quickly retrieve fields from a specific record.  
Example: "Get telephone1 from account where name is Contoso"

Execute an update command to update hidden fields on the current record.  
Example: "Update telephone1 to 123456789"

Type "help" to view a full list of commands within the extension.

Full list of commands:
   Create web resource in [solution name] - Open the dialog to create a web resource in the specified solution
   Disable preview url - Disables the preview url for the maker portal navigation commands to use the normal url instead
   Display ID - Displays the current row id
   Display URL - Displays the current row URL
   Enable form - Enables all the form fields
   Enable preview url - Enables the preview url for the maker portal navigation commands (make.preview.powerapps.com)
   Fill form - Populate the form with random data
   Get dirty fields - Display a list of dirty form fields
   Get entity type code - Displays the current entity type code
   Get form summary - Displays the table name, id, type code and dirty fields
   Get form type - Displays the form type
   Get roles - Displays the current user's roles
   Get user info - Displays the current user's domain name, user id, BU ID, BU Name and roles
   Get version - Displays the current application version
   Go to [table] - Navigate to the specified table form
   Open admin center - Opens the admin center
   Open apps - Opens the list of apps in the maker portal
   Open default solution - Opens the default solution in the maker portal
   Open diagnostics page - Opens the diagnostics page for the environment
   Open [table] in default solution - Opens the specified table in the default solution
   Open [table] in solution [solution] - Opens the specified table in the specified solution
   Open flows - Opens the list of flows in the maker portal
   Open form editor - Opens the current form's editor
   Open maker portal - Opens the maker portal
   Open solution [solution] - Opens the specified solution in the maker portal
   Open solutions - Opens the list of solutions in the maker portal
   Open in default solution - Opens the current table in the default solution
   Open in solution [solution] - Opens the current table in the specified solution
   Query [fetchxml] on [table] - Executes the specified fetch xml against the specified table
   Retrieve [column] from [table] where [column] is [value] - Retrieves the specified column from the specified table using the specified condition
   Show hidden fields - Displays the hidden fields on the form
   Show labels - Shows the field display names
   Show schema names - Shows the field schema names
   Total [table] records - Retrieves a count of all the specified table records 
   Update [column] to [value] - Updates the specified column with the specified value
   Tell me a joke - Tells a hilarious dad joke

More to come!  Reach out on Twitter @bscarlav or @Root16Tweets for suggestions                    

معلومات أساسية عن التمديد

الاسم Toolshed for Power Platform / Dynamics 365 Toolshed for Power Platform / Dynamics 365
ID ghiblnflpmebfpgbccbdhipgandmhkei
عنوان URL الرسمي https://chromewebstore.google.com/detail/toolshed-for-power-platfo/ghiblnflpmebfpgbccbdhipgandmhkei
الوصف Utility Bot for Power Platform / Dynamics 365 Developers and Admins
حجم الملف 103 KB
عدد التثبيتات 399
النسخة الحالية 1.0.5
آخر تحديث 2023-11-20
تاريخ النشر 2022-06-08
تقييم 5.00/5 مجموع تقييمات 15
المطور Root16
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toolshed for Power Platform \/ Dynamics 365",
    "description": "Utility Bot for Power Platform \/ Dynamics 365 Developers and Admins",
    "author": "Root16",
    "version": "1.0.5",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app.js",
                "bot\/responseHTML.js"
            ],
            "css": [
                "bot\/bot.css"
            ]
        }
    ],
    "action": {
        "default_title": "Toolshed for Power Platform \/ Dynamics 365"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "bot\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "imgs\/logo16.png",
        "48": "imgs\/logo48.png",
        "128": "imgs\/logo128.png"
    }
}