ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

Apa itu ServiceNow RPA Chrome Extension?

ServiceNow RPA Chrome Extension adalah ekstensi Chrome yang dikembangkan oleh ServiceNow, dan fitur utamanya adalah "ServiceNow RPA extension for chrome browser.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ServiceNow RPA Chrome Extension

Unduh file ekstensi ServiceNow RPA Chrome Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
URL Resmi https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
Deskripsi ServiceNow RPA extension for chrome browser.
Ukuran File 25.29 KB
Jumlah Instalasi 1,378
Versi Saat Ini 1.6
Terakhir Diperbarui 2024-01-23
Tanggal Publikasi 2022-03-02
Penilaian 5.00/5 Total 2 Penilaian
Pengembang ServiceNow
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}