Workday Tools

Search for highlighted text in Workday

Workday Tools란 무엇입니까?

Workday Tools은(는) thechrisanderson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search for highlighted text in Workday"입니다.

확장 프로그램 스크린샷

screenshot

Workday Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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