Netsuite Utility Plugin
Basic stuff only
什么是Netsuite Utility Plugin?
Netsuite Utility Plugin是由sahal.tariq89开发的Chrome扩展程序,该扩展的主要功能是“Basic stuff only”。
扩展截图
下载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 |
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" ] } |