Workato Admin

Assists admins and consultants with Workato management by providing easy to use tools to navigate environments, recipes, and jobs.

Workato Adminคืออะไร?

Workato Admin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Venn Technology Integration Services และคุณลักษณะหลักของมันคือ "Assists admins and consultants with Workato management by providing easy to use tools to navigate environments, recipes, and jobs."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Workato Admin

ดาวน์โหลดไฟล์ส่วนขยาย Workato Admin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Provides some tools for Workato Administrators and Consultants.
* get a link on callable recipe jobs that links back to the calling recipe
* when in the wrong account after clicking a link, switching teams will bring you back to the original link

This tool is distributed as-is and is not supported. Use at your own risk. Not owned or maintained by Workato or workato.com.

MIT License

Copyright (c) 2022 Venn Technology

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Workato Admin Workato Admin
ID hnemgcohjpjgendkcdkfboolkmmldjmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/workato-admin/hnemgcohjpjgendkcdkfboolkmmldjmd
คำอธิบาย Assists admins and consultants with Workato management by providing easy to use tools to navigate environments, recipes, and jobs.
ขนาดไฟล์ 35.06 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 4
อัปเดตครั้งล่าสุด 2023-01-18
วันที่เผยแพร่ 2020-04-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Venn Technology Integration Services
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "4",
    "default_locale": "en",
    "icons": {
        "16": "icons\/workato_admin16.png",
        "48": "icons\/workato_admin48.png",
        "128": "icons\/workato_admin128.png"
    },
    "author": "Venn Technology",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "https:\/\/*.workato.com\/",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "https:\/\/*.workato.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.workato.com\/recipes\/*\/job\/*",
                "https:\/\/workato.com\/recipes\/*\/job\/*"
            ],
            "js": [
                "calling_job.js"
            ]
        },
        {
            "matches": [
                "https:\/\/app.workato.com\/*"
            ],
            "js": [
                "error.js"
            ]
        }
    ],
    "manifest_version": 3
}