Workato X
Operate Workato faster
什么是Workato X?
Workato X是由gabrielsim开发的Chrome扩展程序,该扩展的主要功能是“Operate Workato faster”。
扩展截图
下载Workato X扩展crx文件
下载Workato X扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features at a glance: - Global search - Export job reports - Show field API name See website for more information
扩展基本信息
名称 | |
ID | gebiinkoigahmgapbihbeogggmcjlhbd |
官方URL | https://chromewebstore.google.com/detail/workato-x/gebiinkoigahmgapbihbeogggmcjlhbd |
简介 | Operate Workato faster |
文件大小 | 103 KB |
安装次数 | 87 |
当前版本 | 1.9.6 |
更新时间 | 2023-02-16 |
上架时间 | 2020-06-30 |
评分 | 5.00/5 共3次评分 |
开发者 | gabrielsim |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://pitch-slice-d3d.notion.site/workatoX-833fddf00cf043a4883cadcb1fc5c008 |
帮助页面URL | https://github.com/gabrielsim/workatox/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Workato X", "version": "1.9.6", "description": "Operate Workato faster", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "workatox", "default_popup": "popup.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/app.workato.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": false, "run_at": "document_idle", "js": [ "vendor.js", "content_script.js" ], "css": [ "styles\/spotlight.css" ], "matches": [ "https:\/\/app.workato.com\/*" ], "exclude_matches": [ "https:\/\/app.workato.com\/users\/password\/new", "https:\/\/app.workato.com\/users\/sign_in", "https:\/\/app.workato.com\/users\/sign_up", "https:\/\/app.workato.com\/users\/two_factor_authentication" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "https:\/\/app.workato.com\/*" ] } ] } |