NetSuite Helper for Your Works
This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.
NetSuite Helper for Your Works란 무엇입니까?
NetSuite Helper for Your Works은(는) Salvatore Alparone에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0."입니다.
확장 프로그램 스크린샷
NetSuite Helper for Your Works 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an unofficial extension to use the NetSuite platform to the better and more easily! Inside, there are the most common operations you can do with NetSuite, faster! You can also add new functionality with the Options Panel. For any request and to add new default actions please contact me to e-mail [email protected]! Thanks!
확장 프로그램 기본 정보
이름 | NetSuite Helper for Your Works |
ID | cmcbjeplgojjjgmpmagjllbnonaagcoj |
공식 URL | https://chromewebstore.google.com/detail/netsuite-helper-for-your/cmcbjeplgojjjgmpmagjllbnonaagcoj |
설명 | This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0. |
파일 크기 | 144 KB |
설치 횟수 | 3,101 |
현재 버전 | 3.0.8 |
최근 업데이트 | 2024-02-10 |
출시 날짜 | 2019-04-24 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | Salvatore Alparone |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NetSuite Helper for Your Works", "short_name": "NHYW", "description": "__MSG_manifest_description__", "version": "3.0.8", "author": "[email protected]", "default_locale": "en", "options_page": "options.html", "action": { "default_icon": "64x64-ns-logo.png", "default_popup": "popup.html" }, "icons": { "16": "16x16-ns-logo.png", "48": "48x48-ns-logo.png", "64": "64x64-ns-logo.png", "128": "128x128-ns-logo.png" }, "background": { "service_worker": "NHFS_background.js", "mode": "module" }, "content_scripts": [ { "matches": [ "*:\/\/*.netsuite.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.netsuite.com\/*" ], "js": [ "content_script_main.js" ], "run_at": "document_idle", "world": "MAIN" } ], "permissions": [ "storage", "contextMenus", "activeTab" ] } |