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. 擴展基本資訊
| 名稱 | |
| ID | gdpgfggeojeakfkecgfdammdbmddiapp |
| 官方網址 | 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"
]
} | |