JumpSeat
The enterprise on-screen guidance platform.
什么是JumpSeat?
JumpSeat是由https://jumpseat.io开发的Chrome扩展程序,该扩展的主要功能是“The enterprise on-screen guidance platform.”。
扩展截图
下载JumpSeat扩展crx文件
下载JumpSeat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
JumpSeat reduces onboarding times, improves training, and eases support by delivering on-screen guidance over your existing enterprise applications.
扩展基本信息
名称 | JumpSeat |
ID | ndlpojioljoiacimlfdeiedhcpjjdiga |
官方URL | https://chromewebstore.google.com/detail/jumpseat/ndlpojioljoiacimlfdeiedhcpjjdiga |
简介 | The enterprise on-screen guidance platform. |
文件大小 | 1.4 MB |
安装次数 | 48,234 |
当前版本 | 6.0.5 |
更新时间 | 2024-01-04 |
上架时间 | 2020-07-01 |
评分 | 5.00/5 共3次评分 |
开发者 | https://jumpseat.io |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://support.jumpseat.io |
隐私政策页面URL | https://jumpseat.io/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JumpSeat", "version": "6.0.5", "manifest_version": 3, "author": "JumpSeat, LLC", "description": "The enterprise on-screen guidance platform.", "action": { "browser_style": true, "default_title": "JumpSeat", "theme_icons": [ { "light": "icons\/icon48.png", "dark": "icons\/icon48.png", "size": 48 }, { "light": "icons\/icon32.png", "dark": "icons\/icon32.png", "size": 32 }, { "light": "icons\/icon20.png", "dark": "icons\/icon20.png", "size": 20 }, { "light": "icons\/icon16.png", "dark": "icons\/icon16.png", "size": 16 } ], "default_popup": "popup.html" }, "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "16": "icons\/icon16.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*\/*" ], "storage": { "managed_schema": "managed.json" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "match_about_blank": true, "all_frames": true, "run_at": "document_end", "js": [ "jumpseat-extension.js" ], "css": [ "css\/console.css" ] } ], "content_security_policy": { "script-src": "none", "object-src": "none" } } |