ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

Cos'è ServiceNow RPA Chrome Extension?

ServiceNow RPA Chrome Extension è un'estensione di Chrome sviluppata da ServiceNow, e la sua funzione principale è "ServiceNow RPA extension for chrome browser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ServiceNow RPA Chrome Extension

Scarica i file di estensione ServiceNow RPA Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
URL Ufficiale https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
Descrizione ServiceNow RPA extension for chrome browser.
Dimensione del File 25.29 KB
Conteggio Installazioni 1,378
Versione Corrente 1.6
Ultimo Aggiornamento 2024-01-23
Data di Pubblicazione 2022-03-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore ServiceNow
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}