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
} | |