better netsuite
Improvements for netsuite UI
什么是better netsuite?
better netsuite是由ilc182开发的Chrome扩展程序,该扩展的主要功能是“Improvements for netsuite UI”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |