NetSuite SplitView
An extension which enables split pane functionality in NetSuite pages
NetSuite SplitView란 무엇입니까?
NetSuite SplitView은(는) Howell Manongsong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension which enables split pane functionality in NetSuite pages"입니다.
확장 프로그램 스크린샷
NetSuite SplitView 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |