Bounteous OpenAir Helper
For Bounteous staff to fix some of the most annoying OpenAir usability issues.
Cos'è Bounteous OpenAir Helper?
Bounteous OpenAir Helper è un'estensione di Chrome sviluppata da Bounteous Extension Developers, e la sua funzione principale è "For Bounteous staff to fix some of the most annoying OpenAir usability issues.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bounteous OpenAir Helper
Scarica i file di estensione Bounteous OpenAir Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Bounteous OpenAir Helper |
ID | lcpgmdochehenfbeidmfhjjnmbhajchh |
URL Ufficiale | https://chromewebstore.google.com/detail/bounteous-openair-helper/lcpgmdochehenfbeidmfhjjnmbhajchh |
Descrizione | For Bounteous staff to fix some of the most annoying OpenAir usability issues. |
Dimensione del File | 23.57 KB |
Conteggio Installazioni | 221 |
Versione Corrente | 1.4.4 |
Ultimo Aggiornamento | 2023-01-17 |
Data di Pubblicazione | 2022-06-13 |
Sviluppatore | Bounteous Extension Developers |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.bounteous.com/legal/privacy-policy |
Lingue Supportate | 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" } ] } |