Workday Tools
Search for highlighted text in Workday
什麼是Workday Tools?
Workday Tools是由thechrisanderson開發的Chrome擴展程式,該擴展的主要功能是“Search for highlighted text in Workday”。
擴展截圖
下載Workday Tools擴展crx文件
下載Workday Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Workday Tools |
ID | penaffiinfapndnaoejcnnnipidnomdd |
官方網址 | https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd |
簡介 | Search for highlighted text in Workday |
檔案大小 | 19.02 KB |
安裝次數 | 2,843 |
目前版本 | 1.1 |
更新時間 | 2016-12-29 |
上架時間 | 2016-12-29 |
評分 | 3.88/5 共 8 次評分 |
開發者 | thechrisanderson |
付費類型 | free |
支援的語言 | 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 } |