NetSuite Keyboard Shortcuts
NetSuite Keyboard Shortcuts
What is NetSuite Keyboard Shortcuts?
NetSuite Keyboard Shortcuts is a Chrome extension developed by Milcho Dimkov, and its main feature is "NetSuite Keyboard Shortcuts".
Extension Screenshots
Download NetSuite Keyboard Shortcuts Extension CRX File
Download NetSuite Keyboard Shortcuts 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
This Chrome extension allows NetSuite users to use keyboard shortcuts to access frequently used pages by typing a combination of keys (with or without special keys). There are more than 60 preset keyboard shortcuts and custom ones can be added as well. Check the video and the documentation for details.
Extension Basic Information
Name | NetSuite Keyboard Shortcuts |
ID | dgfhjidfjpggcejapjbpadkngnbefdla |
Official URL | https://chromewebstore.google.com/detail/netsuite-keyboard-shortcu/dgfhjidfjpggcejapjbpadkngnbefdla |
Description | NetSuite Keyboard Shortcuts |
File Size | 2.73 MB |
Installation Count | 1,363 |
Current Version | 1.1 |
Last Updated | 2021-01-15 |
Publish Date | 2021-01-10 |
Rating | 5.00/5 Total 16 Ratings |
Developer | Milcho Dimkov |
[email protected] | |
Payment Type | free |
Extension Website | https://www.travizer.com/netsuite-keyboard-shortcuts.html |
Help Page URL | https://www.travizer.com/netsuite-keyboard-shortcuts.html |
Supported Languages | en |
manifest.json | |
{ "background": { "scripts": [ "scripts\/background.js" ] }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Open options page" } }, "content_scripts": [ { "all_frames": false, "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/*.app.netsuite.com\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "default_locale": "en", "description": "__MSG_appDescription__", "icons": { "128": "images\/icon-128.png", "16": "images\/icon-16.png", "48": "images\/icon-48.png" }, "manifest_version": 2, "name": "__MSG_appName__", "options_page": "options\/options.html", "short_name": "__MSG_appShortName__", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1" } |