Workday Tools
Search for highlighted text in Workday
Qu'est-ce que Workday Tools ?
Workday Tools est une extension Chrome développée par thechrisanderson, et sa fonction principale est "Search for highlighted text in Workday".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Workday Tools
Téléchargez les fichiers d'extension Workday Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Workday Tools |
ID | penaffiinfapndnaoejcnnnipidnomdd |
URL Officiel | https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd |
Description | Search for highlighted text in Workday |
Taille du Fichier | 19.02 KB |
Nombre d'Installations | 2,843 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-12-29 |
Date de Publication | 2016-12-29 |
Évaluation | 3.88/5 Total 8 Évaluations |
Développeur | thechrisanderson |
Type de Paiement | free |
Langues Prises en Charge | 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 } |