Netsuite Utility Plugin

Basic stuff only

Netsuite Utility Plugin란 무엇입니까?

Netsuite Utility Plugin은(는) sahal.tariq89에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Basic stuff only"입니다.

확장 프로그램 스크린샷

screenshot

Netsuite Utility Plugin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}