ServiceNow RPA Chrome Extension
ServiceNow RPA extension for chrome browser.
Что такое ServiceNow RPA Chrome Extension?
ServiceNow RPA Chrome Extension - это расширение Chrome, разработанное ServiceNow, и его основная функция - "ServiceNow RPA extension for chrome browser.".
Снимки экрана расширения
Скачать файл CRX расширения ServiceNow RPA Chrome Extension
Скачайте файлы расширений 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.
Основная информация о расширении
Название | ServiceNow RPA Chrome Extension |
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" ] } |