Dynamics 365 F&O table browser

View the content of a table in the Dynamics 365 environment of your active browser tab

Dynamics 365 F&O table browser là gì?

Dynamics 365 F&O table browser là một tiện ích mở rộng Chrome được phát triển bởi Thomas Meersschaert, và tính năng chính của nó là "View the content of a table in the Dynamics 365 environment of your active browser tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dynamics 365 F&O table browser

Tải xuống các tệp mở rộng Dynamics 365 F&O table browser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This small browser extension allows you to quickly navigate to the table browser of the Dynamics 365 Finance & Operations environment you have in your active browser tab. It asks for an AOT table name and on confirmation it will open a new tab with the table browser of the specified table. This can be very handy during an implementation when you are working on several environments at the same time (TEST-UAT-PROD).

There's no validation, so some AOT experience is necessary. For example: if you want to look at the vendors in the system you should know that this is stored in the "VendTable".

You can configure your browser so that the extension opens with a keyboard shortcut in the "Manage extensions" screen. By that, opening the table browser goes very fast.

Note that this extension only works with Dynamics 365 F&O cloud environments. On-premise installations are not supported.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dynamics 365 F&O table browser Dynamics 365 F&O table browser
ID obacncjoodgjapbhjkgnpkhbdahcahbd
URL Chính Thức https://chromewebstore.google.com/detail/dynamics-365-fo-table-bro/obacncjoodgjapbhjkgnpkhbdahcahbd
Mô tả View the content of a table in the Dynamics 365 environment of your active browser tab
Kích Thước Tệp 26.55 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-11-27
Ngày Phát Hành 2019-11-28
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Thomas Meersschaert
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dynamics 365 F&O table browser",
    "short_name": "Dyn365 TB",
    "author": "Thomas Meersschaert",
    "version": "1.3",
    "manifest_version": 3,
    "description": "View the content of a table in the Dynamics 365 environment of your active browser tab",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.dynamics.com\/*",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "action": {
        "default_icon": {
            "20": "images\/logo20.png",
            "40": "images\/logo40.png"
        },
        "default_title": "Dynamics 365 F&O table browser",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}