NetSuite Scripted Records

See the customizations deployed to your records

NetSuite Scripted Records là gì?

NetSuite Scripted Records là một tiện ích mở rộng Chrome được phát triển bởi Marcel Pestana, và tính năng chính của nó là "See the customizations deployed to your records".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NetSuite Scripted Records

Tải xuống các tệp mở rộng NetSuite Scripted Records 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

                        Would you like to easily see the customizations applied to a NetSuite record? Just open this extension and it will display the User Event Scripts, Client Scripts and Workflows. It also displays if the script is deployed, status and preview the script file.

You must have access to NetSuite Scripts to use this extension.                    

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

Tên NetSuite Scripted Records NetSuite Scripted Records
ID dkhjafbceiceaidnbbilhphhkanlpkkj
URL Chính Thức https://chromewebstore.google.com/detail/netsuite-scripted-records/dkhjafbceiceaidnbbilhphhkanlpkkj
Mô tả See the customizations deployed to your records
Kích Thước Tệp 91.37 KB
Số Lần Cài Đặt 10,919
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2022-10-11
Ngày Phát Hành 2018-08-24
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Marcel Pestana
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",
    "manifest_version": 2,
    "name": "NetSuite Scripted Records",
    "description": "See the customizations deployed to your records",
    "author": "Marcel Pestana ",
    "homepage_url": "https:\/\/marcelpestana.com",
    "version": "1.5",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "NetSuite Scripted Records",
        "default_popup": "popup.html",
        "default_icon": {
            "24": "img\/icon24.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netsuite.com\/app\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "lib\/jquery-1.11.2.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "https:\/\/*.netsuite.com\/*"
    ],
    "web_accessible_resources": [
        "js\/scriptrecordhelper.js"
    ]
}