Workday Tools

Search for highlighted text in Workday

Wat is Workday Tools?

Workday Tools is een Chrome-extensie ontwikkeld door thechrisanderson, en de belangrijkste functie is "Search for highlighted text in Workday".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Workday Tools

Download Workday Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
Officiële URL https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
Beschrijving Search for highlighted text in Workday
Bestandsgrootte 19.02 KB
Aantal Installaties 2,843
Huidige Versie 1.1
Laatst Bijgewerkt 2016-12-29
Publicatiedatum 2016-12-29
Beoordeling 3.88/5 Totaal 8 Beoordelingen
Ontwikkelaar thechrisanderson
Betalingswijze free
Ondersteunde Talen 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
}