ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

O que é ServiceNow RPA Chrome Extension?

ServiceNow RPA Chrome Extension é uma extensão do Chrome desenvolvida por ServiceNow, e sua principal característica é "ServiceNow RPA extension for chrome browser.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ServiceNow RPA Chrome Extension

Baixe arquivos de extensão ServiceNow RPA Chrome Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension enables ServiceNow RPA Desktop Design Studio, Attended Robots, and Unattended Robots to interact with the Chrome browser.                    

Informações Básicas da Extensão

Nome ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
URL Oficial https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
Descrição ServiceNow RPA extension for chrome browser.
Tamanho do Arquivo 25.29 KB
Contagem de Instalações 1,378
Versão Atual 1.6
Última Atualização 2024-01-23
Data de Publicação 2022-03-02
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor ServiceNow
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}