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. 扩展基本信息
| 名称 | |
| ID | penaffiinfapndnaoejcnnnipidnomdd |
| 官方URL | 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
} | |