better netsuite

Improvements for netsuite UI

better netsuite란 무엇입니까?

better netsuite은(는) ilc182에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improvements for netsuite UI"입니다.

확장 프로그램 스크린샷

screenshot

better netsuite 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Provides fixes for the useless UI of netsuite.

Added features:
- enlarged input box for timelog description
- summary table for logged hours per project

v1.2:
- editable Hourly fee field
- billable amount is calculated per project and total
- minor code refactor

v1.3
- szamlazz.hu "integration", to auto-create an invoice draft, based on summary table

v1.4
- updated CSS to match netsuite's updated HTML

v1.5
- hourly fee can be set per project

v1.6
- invoice generation logic changed to show actual hours

v1.7
- updated CSS to match netsuite's updated HTML                    

확장 프로그램 기본 정보

이름 better netsuite better netsuite
ID gphcnjdkgodjpbcfdombfmjadagiipne
공식 URL https://chromewebstore.google.com/detail/better-netsuite/gphcnjdkgodjpbcfdombfmjadagiipne
설명 Improvements for netsuite UI
파일 크기 33.77 KB
설치 횟수 58
현재 버전 1.7
최근 업데이트 2023-04-25
출시 날짜 2022-04-21
평점 5.00/5 총 1 개의 평점
개발자 ilc182
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "better netsuite",
    "description": "Improvements for netsuite UI",
    "version": "1.7",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.app.netsuite.com\/*"
            ]
        },
        {
            "js": [
                "szamlazz.js"
            ],
            "matches": [
                "https:\/\/www.szamlazz.hu\/szamla\/?page=szamlaszerkeszto"
            ]
        }
    ]
}