ServiceNow RPA Chrome Extension
ServiceNow RPA extension for chrome browser.
什么是ServiceNow RPA Chrome Extension?
ServiceNow RPA Chrome Extension是由ServiceNow开发的Chrome扩展程序,该扩展的主要功能是“ServiceNow RPA extension for chrome browser.”。
扩展截图
下载ServiceNow RPA Chrome Extension扩展crx文件
下载ServiceNow RPA Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension enables ServiceNow RPA Desktop Design Studio, Attended Robots, and Unattended Robots to interact with the Chrome browser. 扩展基本信息
| 名称 | |
| ID | bnaofpgjajbimmicdiipemhmheafhgkb |
| 官方URL | https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb |
| 简介 | ServiceNow RPA extension for chrome browser. |
| 文件大小 | 25.29 KB |
| 安装次数 | 1,378 |
| 当前版本 | 1.6 |
| 更新时间 | 2024-01-23 |
| 上架时间 | 2022-03-02 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | ServiceNow |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ServiceNow RPA Chrome Extension",
"short_name": "snrpacrx",
"version": "1.6",
"manifest_version": 3,
"description": "ServiceNow RPA extension for chrome browser.",
"icons": {
"24": "icons\/logo.png",
"32": "icons\/logo.png",
"48": "icons\/logo.png",
"128": "icons\/logo.png"
},
"background": {
"service_worker": "scripts\/main.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"all_frames": true,
"js": [
"scripts\/core.js"
],
"match_about_blank": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self';object-src 'self'"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"permissions": [
"alarms",
"scripting",
"nativeMessaging",
"debugger",
"tabs",
"background",
"webNavigation"
]
} | |