NetSuite SplitView
An extension which enables split pane functionality in NetSuite pages
NetSuite SplitView क्या है?
NetSuite SplitView Howell Manongsong द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension which enables split pane functionality in NetSuite pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NetSuite SplitView एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | NetSuite SplitView |
ID | opnlpddlaadidhpjlgkcdmicdpllkaip |
आधिकारिक URL | https://chromewebstore.google.com/detail/netsuite-splitview/opnlpddlaadidhpjlgkcdmicdpllkaip |
विवरण | An extension which enables split pane functionality in NetSuite pages |
फ़ाइल का आकार | 41.02 KB |
स्थापना संख्या | 933 |
वर्तमान संस्करण | 0.0.0.3 |
अंतिम अपडेट | 2024-02-27 |
प्रकाशन तिथि | 2023-08-31 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | Howell Manongsong |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |