Netsuite Utility Plugin
Basic stuff only
O que é Netsuite Utility Plugin?
Netsuite Utility Plugin é uma extensão do Chrome desenvolvida por sahal.tariq89, e sua principal característica é "Basic stuff only".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Netsuite Utility Plugin
Baixe arquivos de extensão Netsuite Utility Plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Netsuite Utility Plugin |
ID | gdpgfggeojeakfkecgfdammdbmddiapp |
URL Oficial | https://chromewebstore.google.com/detail/netsuite-utility-plugin/gdpgfggeojeakfkecgfdammdbmddiapp |
Descrição | Basic stuff only |
Tamanho do Arquivo | 14.71 KB |
Contagem de Instalações | 74 |
Versão Atual | 1.02 |
Última Atualização | 2021-06-13 |
Data de Publicação | 2021-06-10 |
Desenvolvedor | sahal.tariq89 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |