Netsuite Utility Plugin
Basic stuff only
Wat is Netsuite Utility Plugin?
Netsuite Utility Plugin is een Chrome-extensie ontwikkeld door sahal.tariq89, en de belangrijkste functie is "Basic stuff only".
Extensie Screenshots
Download het CRX-bestand van de extensie Netsuite Utility Plugin
Download Netsuite Utility Plugin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | gdpgfggeojeakfkecgfdammdbmddiapp |
| Officiële URL | https://chromewebstore.google.com/detail/netsuite-utility-plugin/gdpgfggeojeakfkecgfdammdbmddiapp |
| Beschrijving | Basic stuff only |
| Bestandsgrootte | 14.71 KB |
| Aantal Installaties | 74 |
| Huidige Versie | 1.02 |
| Laatst Bijgewerkt | 2021-06-13 |
| Publicatiedatum | 2021-06-10 |
| Ontwikkelaar | sahal.tariq89 |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |