Bounteous OpenAir Helper
For Bounteous staff to fix some of the most annoying OpenAir usability issues.
什么是Bounteous OpenAir Helper?
Bounteous OpenAir Helper是由Bounteous Extension Developers开发的Chrome扩展程序,该扩展的主要功能是“For Bounteous staff to fix some of the most annoying OpenAir usability issues.”。
扩展截图
下载Bounteous OpenAir Helper扩展crx文件
下载Bounteous OpenAir Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features: 1) Adds Bounteous SSO to OpenAir's login page. 2) Adds red background color on the Timesheet submission button hover. 3) Hides the "Save and Close" button on timesheet notes if the user doesn't first enter the hours worked. By default, if timesheet notes are entered without first entering hours, OpenAir will delete the notes if the user clicks the "Save and Close" button. 4) Adds a quick reference link to the "Where to log your time?" Confluence page. 5) Adds OpenAir session countdown timer to the footer so the user knows when their session is about to expire. 6) Greys out the background on Saturdays and Sundays to discourage accidental weekend entries. 7) Displays celebratory confetti upon timesheet submission. 8) For split weeks, blacks out dates where you cannot enter time and adds a tool tip explanation. 9) Removes the Oracle branded footer, giving you one extra row of working space.
扩展基本信息
名称 | Bounteous OpenAir Helper |
ID | lcpgmdochehenfbeidmfhjjnmbhajchh |
官方URL | https://chromewebstore.google.com/detail/bounteous-openair-helper/lcpgmdochehenfbeidmfhjjnmbhajchh |
简介 | For Bounteous staff to fix some of the most annoying OpenAir usability issues. |
文件大小 | 23.57 KB |
安装次数 | 221 |
当前版本 | 1.4.4 |
更新时间 | 2023-01-17 |
上架时间 | 2022-06-13 |
开发者 | Bounteous Extension Developers |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.bounteous.com/legal/privacy-policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bounteous OpenAir Helper", "version": "1.4.4", "manifest_version": 3, "description": "For Bounteous staff to fix some of the most annoying OpenAir usability issues.", "icons": { "128": "rainbow.png" }, "content_scripts": [ { "matches": [ "https:\/\/bounteous.app.openair.com\/timesheet*" ], "js": [ "libraries\/confetti.js", "common.js", "content-script.js" ], "css": [ "timesheet.css" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/bounteous.app.openair.com\/logout*", "https:\/\/bounteous.app.openair.com\/dashboard*" ], "js": [ "common.js", "logout-content.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/auth.openair.com\/*" ], "js": [ "common.js", "login-content.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/bounteous.app.openair.com\/*" ], "js": [ "common.js", "footer-content.js" ], "run_at": "document_idle" } ] } |