Netsuite Utility Plugin
Basic stuff only
Netsuite Utility Plugin क्या है?
Netsuite Utility Plugin sahal.tariq89 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Basic stuff only"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netsuite Utility Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 |
ईमेल | [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" ] } |