ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

Qu'est-ce que ServiceNow RPA Chrome Extension ?

ServiceNow RPA Chrome Extension est une extension Chrome développée par ServiceNow, et sa fonction principale est "ServiceNow RPA extension for chrome browser.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ServiceNow RPA Chrome Extension

Téléchargez les fichiers d'extension ServiceNow RPA Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
URL Officiel https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
Description ServiceNow RPA extension for chrome browser.
Taille du Fichier 25.29 KB
Nombre d'Installations 1,378
Version Actuelle 1.6
Dernière Mise à Jour 2024-01-23
Date de Publication 2022-03-02
Évaluation 5.00/5 Total 2 Évaluations
Développeur ServiceNow
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}