Workday Tools

Search for highlighted text in Workday

Apa itu Workday Tools?

Workday Tools adalah ekstensi Chrome yang dikembangkan oleh thechrisanderson, dan fitur utamanya adalah "Search for highlighted text in Workday".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Workday Tools

Unduh file ekstensi Workday Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Workday Tools Workday Tools
ID penaffiinfapndnaoejcnnnipidnomdd
URL Resmi https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd
Deskripsi Search for highlighted text in Workday
Ukuran File 19.02 KB
Jumlah Instalasi 2,843
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-12-29
Tanggal Publikasi 2016-12-29
Penilaian 3.88/5 Total 8 Penilaian
Pengembang thechrisanderson
Tipe Pembayaran free
Bahasa yang Didukung 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
}