NetSuite SplitView
An extension which enables split pane functionality in NetSuite pages
Was ist NetSuite SplitView?
NetSuite SplitView ist eine Chrome-Erweiterung, die von Howell Manongsong entwickelt wurde, und ihr Hauptmerkmal ist "An extension which enables split pane functionality in NetSuite pages".
Erweiterungsscreenshots
NetSuite SplitView-Erweiterungs-CRX-Datei herunterladen
Laden Sie NetSuite SplitView-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Elevate your experience with the NetSuite SplitView extension. Seamlessly transform the way you navigate through NetSuite links by unlocking the power of split pane browsing. Revolutionize your workflow Tired of jumping back and forth between tabs? With NetSuite SplitView, you're in control. Effortlessly dive into your essential links while maintaining a comprehensive view. No more endless tab clutter! Intuitive functionality Initiate split-pane viewing by right-clicking on any link within a NetSuite page and selecting "View in NetSuite SplitView." This action opens the page within the split pane interface, enhancing your browsing experience. Tailored to your needs Customization is key. Adjust the default pane width to suit your preference, ensuring a personalized browsing experience that matches your style. Plus, the extension automatically adapts to your chosen NetSuite theme! Developer Notes: This extension has a limitation where it cannot display links from other origins due to security restrictions imposed by Cross-Site Scripting (XSS) protection mechanisms. Graphic assets by https://lianm.design Disclaimer: This product is not affiliated with or endorsed by Oracle NetSuite.
Grundlegende Informationen zur Erweiterung
Name | NetSuite SplitView |
ID | opnlpddlaadidhpjlgkcdmicdpllkaip |
Offizielle URL | https://chromewebstore.google.com/detail/netsuite-splitview/opnlpddlaadidhpjlgkcdmicdpllkaip |
Beschreibung | An extension which enables split pane functionality in NetSuite pages |
Dateigröße | 41.02 KB |
Installationsanzahl | 933 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2024-02-27 |
Veröffentlichungsdatum | 2023-08-31 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | Howell Manongsong |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NetSuite SplitView", "version": "0.0.0.3", "description": "An extension which enables split pane functionality in NetSuite pages", "permissions": [ "storage", "contextMenus", "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/*.netsuite.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": "images\/icon-128.png" }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |