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”。

擴展截圖

screenshot
screenshot
screenshot

下載NetSuite SplitView擴展crx文件

下載NetSuite SplitView擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 NetSuite SplitView
ID opnlpddlaadidhpjlgkcdmicdpllkaip
官方網址 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"
    }
}