Workday Tools

Search for highlighted text in Workday

Workday Toolsคืออะไร?

Workday Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thechrisanderson และคุณลักษณะหลักของมันคือ "Search for highlighted text in Workday"

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

screenshot

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

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

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

                        Allows you to highlight text in your browser and perform actions in workday on the text by right clicking, such as search, or proxy-as.  Particularly useful for finding people in workday directly from your email.                    

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

ชื่อ Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
คำอธิบาย Search for highlighted text in Workday
ขนาดไฟล์ 19.02 KB
จำนวนการติดตั้ง 2,843
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-12-29
วันที่เผยแพร่ 2016-12-29
คะแนน 3.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา thechrisanderson
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Workday Tools",
    "icons": {
        "128": "icon128.png"
    },
    "description": "Search for highlighted text in Workday",
    "version": "1.1",
    "permissions": [
        "contextMenus",
        "cookies",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "background": {
        "scripts": [
            "workday_tools.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.workday.com\/*",
                "https:\/\/*.myworkday.com\/*",
                "http:\/\/*.workday.com\/*",
                "http:\/\/*.myworkday.com\/*"
            ],
            "js": [
                "perform_start_proxy.js"
            ]
        }
    ],
    "manifest_version": 2
}