Prevent-Workday-Timeout

Prevent session timeouts on the Workday website.

Prevent-Workday-Timeoutคืออะไร?

Prevent-Workday-Timeout เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nathan และคุณลักษณะหลักของมันคือ "Prevent session timeouts on the Workday website."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prevent-Workday-Timeout

ดาวน์โหลดไฟล์ส่วนขยาย Prevent-Workday-Timeout ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple extension to prevent session timeouts on the Workday website.

This extension only works if you have an active Workday subscription, and a valid Workday account.

By default, the Workday session is configured to timeout within ten minutes, and the Workday user interface includes a number of overlay windows which hide the warning message that your session is about to timeout.

In testing, this extension has been found to reliably prevent your Workday session from timing out for a minimum of two hours, and up to a maximum of approximately eight hours. If your computer goes to sleep, or if Google Chrome is inactive for a significant period of time, the extension will no longer be able to keep your Workday session alive.

Release Notes:

- v1.0.5 includes updated icons and improved error-handling.
- v1.0.6 includes fixed extension icon (in the list of installed extensions).
- v1.0.7 includes improvements to error handling.
- v1.0.8 includes improved capability to keep the Workday session active, and basic notifications.
- v1.0.9 includes fix for a bug that sometimes causes Workday to show NaN error.
- v1.1.0 includes a major update that should allow the extension to work on all cloud Workday instances (wd1.workday.com, wd2.workday.com, ...).
- v1.1.1 includes a fix for a bug that sometimes causes Workday session cookies to disappear after the initial get/set cycle.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Prevent-Workday-Timeout Prevent-Workday-Timeout
ID mcliokdljpofldmihgimfcnkmgifckki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/prevent-workday-timeout/mcliokdljpofldmihgimfcnkmgifckki
คำอธิบาย Prevent session timeouts on the Workday website.
ขนาดไฟล์ 68.77 KB
จำนวนการติดตั้ง 472
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2023-12-09
วันที่เผยแพร่ 2023-01-29
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Nathan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/NathanLaan/prevent-workday-timeout
URL หน้าช่วยเหลือ https://github.com/NathanLaan/prevent-workday-timeout/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prevent-Workday-Timeout",
    "description": "Prevent session timeouts on the Workday website.",
    "version": "1.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "service.js"
    },
    "host_permissions": [
        "https:\/\/*.myworkday.com\/"
    ],
    "permissions": [
        "cookies",
        "notifications"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "Command+Shift+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            },
            "description": "Prevent-Workday-Timeout",
            "global": false
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myworkday.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_title": "Prevent-Workday-Timeout",
        "default_icon": "\/images\/changes-black-128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "\/images\/changes-black-32.png",
        "128": "\/images\/changes-black-128.png",
        "256": "\/images\/changes-black-256.png",
        "512": "\/images\/changes-black-512.png"
    }
}