better netsuite

Improvements for netsuite UI

什麼是better netsuite?

better netsuite是由ilc182開發的Chrome擴展程式,該擴展的主要功能是“Improvements for netsuite UI”。

擴展截圖

screenshot

下載better netsuite擴展crx文件

下載better netsuite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}