Netsuite Utility Plugin

Basic stuff only

Netsuite Utility Pluginとは何ですか?

Netsuite Utility Pluginはsahal.tariq89によって開発されたChromeの拡張機能で、その主な機能は「Basic stuff only」です。

拡張機能のスクリーンショット

screenshot

Netsuite Utility Plugin拡張機能のCRXファイルをダウンロード

Netsuite Utility Plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A basic utility plugin helping with small things related to NetSuite.
Open a record (in view or edit mode) and click Delete Current Record button to delete it. (Will not delete if there are records dependant to it)
Saved Search tool => requires a bit more work but can perform basic saved searches
Dark and Normal are themes to be applied.                    

拡張機能の基本情報

名前 Netsuite Utility Plugin Netsuite Utility Plugin
ID gdpgfggeojeakfkecgfdammdbmddiapp
公式URL https://chromewebstore.google.com/detail/netsuite-utility-plugin/gdpgfggeojeakfkecgfdammdbmddiapp
説明 Basic stuff only
ファイルサイズ 14.71 KB
インストール数 74
現在のバージョン 1.02
最終更新日 2021-06-13
公開日 2021-06-10
開発者 sahal.tariq89
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netsuite Utility Plugin",
    "description": "Basic stuff only",
    "version": "1.02",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "https:\/\/*.app.netsuite.com\/*",
        "https:\/\/*.system.netsuite.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.app.netsuite.com\/*",
                "https:\/\/*.system.netsuite.com\/*"
            ],
            "js": [
                "assets\/f3_content_script.js"
            ],
            "css": [
                "assets\/f3_content_style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "modules\/search_record.js",
        "modules\/delete_record.js",
        "modules\/file_upload.js"
    ]
}