Workday Tools
Search for highlighted text in Workday
Co to jest Workday Tools?
Workday Tools to rozszerzenie Chrome opracowane przez thechrisanderson, a jego główną funkcją jest „Search for highlighted text in Workday”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Workday Tools
Pobierz pliki rozszerzeń Workday Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Workday Tools |
ID | penaffiinfapndnaoejcnnnipidnomdd |
Oficjalny URL | https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd |
Opis | Search for highlighted text in Workday |
Rozmiar pliku | 19.02 KB |
Liczba instalacji | 2,843 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-12-29 |
Data Publikacji | 2016-12-29 |
Ocena | 3.88/5 Łącznie 8 Oceny |
Deweloper | thechrisanderson |
Typ Płatności | free |
Obsługiwane Języki | 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 } |