Workday Tools

Search for highlighted text in Workday

Workday Tools là gì?

Workday Tools là một tiện ích mở rộng Chrome được phát triển bởi thechrisanderson, và tính năng chính của nó là "Search for highlighted text in Workday".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Workday Tools

Tải xuống các tệp mở rộng Workday Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
URL Chính Thức https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
Mô tả Search for highlighted text in Workday
Kích Thước Tệp 19.02 KB
Số Lần Cài Đặt 2,843
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-12-29
Ngày Phát Hành 2016-12-29
Đánh Giá 3.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển thechrisanderson
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}