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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
        }
    ]
}