Workday Tools

Search for highlighted text in Workday

Cos'è Workday Tools?

Workday Tools è un'estensione di Chrome sviluppata da thechrisanderson, e la sua funzione principale è "Search for highlighted text in Workday".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Workday Tools

Scarica i file di estensione Workday Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
URL Ufficiale https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
Descrizione Search for highlighted text in Workday
Dimensione del File 19.02 KB
Conteggio Installazioni 2,843
Versione Corrente 1.1
Ultimo Aggiornamento 2016-12-29
Data di Pubblicazione 2016-12-29
Valutazione 3.88/5 Totale 8 Valutazioni
Sviluppatore thechrisanderson
Tipo di Pagamento free
Lingue Supportate 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
}