Xcelero Extension
NetSuite Test Automation
What is Xcelero Extension?
Xcelero Extension is a Chrome extension developed by https://xcelerobpv.com, and its main feature is "NetSuite Test Automation".
Extension Screenshots
Download Xcelero Extension Extension CRX File
Download Xcelero Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Xcelero extension allows capture of data from NetSuite webpages. This data can then be used to test those forms.
Extension Basic Information
Name | Xcelero Extension |
ID | gjcjdgkbnakbkngicdmamifjjjedkdeo |
Official URL | https://chromewebstore.google.com/detail/xcelero-extension/gjcjdgkbnakbkngicdmamifjjjedkdeo |
Description | NetSuite Test Automation |
File Size | 4.53 MB |
Installation Count | 85 |
Current Version | 5.3.2 |
Last Updated | 2021-02-23 |
Publish Date | 2020-06-29 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://xcelerobpv.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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'" } |