ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

Wat is ServiceNow RPA Chrome Extension?

ServiceNow RPA Chrome Extension is een Chrome-extensie ontwikkeld door ServiceNow, en de belangrijkste functie is "ServiceNow RPA extension for chrome browser.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ServiceNow RPA Chrome Extension

Download ServiceNow RPA Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
Officiële URL https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
Beschrijving ServiceNow RPA extension for chrome browser.
Bestandsgrootte 25.29 KB
Aantal Installaties 1,378
Huidige Versie 1.6
Laatst Bijgewerkt 2024-01-23
Publicatiedatum 2022-03-02
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar ServiceNow
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}