Netsuite Utility Plugin

Basic stuff only

Cos'è Netsuite Utility Plugin?

Netsuite Utility Plugin è un'estensione di Chrome sviluppata da sahal.tariq89, e la sua funzione principale è "Basic stuff only".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Netsuite Utility Plugin

Scarica i file di estensione Netsuite Utility Plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Netsuite Utility Plugin Netsuite Utility Plugin
ID gdpgfggeojeakfkecgfdammdbmddiapp
URL Ufficiale https://chromewebstore.google.com/detail/netsuite-utility-plugin/gdpgfggeojeakfkecgfdammdbmddiapp
Descrizione Basic stuff only
Dimensione del File 14.71 KB
Conteggio Installazioni 74
Versione Corrente 1.02
Ultimo Aggiornamento 2021-06-13
Data di Pubblicazione 2021-06-10
Sviluppatore sahal.tariq89
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}