Workday Tools

Search for highlighted text in Workday

What is Workday Tools?

Workday Tools is a Chrome extension developed by thechrisanderson, and its main feature is "Search for highlighted text in Workday".

Extension Screenshots

screenshot

Download Workday Tools Extension CRX File

Download Workday Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
Official URL https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
Description Search for highlighted text in Workday
File Size 19.02 KB
Installation Count 2,843
Current Version 1.1
Last Updated 2016-12-29
Publish Date 2016-12-29
Rating 3.88/5 Total 8 Ratings
Developer thechrisanderson
Payment Type free
Supported Languages 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
}