Xcelero Extension
NetSuite Test Automation
Xcelero Extension là gì?
Xcelero Extension là một tiện ích mở rộng Chrome được phát triển bởi https://xcelerobpv.com, và tính năng chính của nó là "NetSuite Test Automation".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Xcelero Extension
Tải xuống các tệp mở rộng Xcelero Extension 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
Xcelero extension allows capture of data from NetSuite webpages. This data can then be used to test those forms.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Xcelero Extension |
ID | gjcjdgkbnakbkngicdmamifjjjedkdeo |
URL Chính Thức | https://chromewebstore.google.com/detail/xcelero-extension/gjcjdgkbnakbkngicdmamifjjjedkdeo |
Mô tả | NetSuite Test Automation |
Kích Thước Tệp | 4.53 MB |
Số Lần Cài Đặt | 85 |
Phiên Bản Hiện Tại | 5.3.2 |
Cập Nhật Lần Cuối | 2021-02-23 |
Ngày Phát Hành | 2020-06-29 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://xcelerobpv.com |
[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": "Xcelero Extension", "version": "5.3.2", "manifest_version": 2, "description": "NetSuite Test Automation", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "64": "icons\/icon.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "name": "Click to open the extension sidebar" }, "permissions": [ "tabs", "contextMenus", "https:\/\/*.app.netsuite.com\/*", "https:\/\/*.netsuite.com\/*", "https:\/\/system.netsuite.com\/*", "https:\/\/netsuite.com\/*", "https:\/\/st.centium.net\/*", "https:\/\/xcelero.base.iheartmedia.com\/*", "https:\/\/connect.xcelero.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.netsuite.com\/*" ], "js": [ "src\/dist\/assets\/js\/jquery-3.3.1.min.js", "content.js", "src\/dist\/assets\/js\/jquery-ui.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "src\/dist\/index.html", "src\/dist\/group.html", "src\/dist\/process.html", "src\/dist\/assertions.html", "src\/dist\/listOfTestCases.html", "src\/dist\/advancededit.html" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |