ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

ServiceNow RPA Chrome Extensionคืออะไร?

ServiceNow RPA Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ServiceNow และคุณลักษณะหลักของมันคือ "ServiceNow RPA extension for chrome browser."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ServiceNow RPA Chrome Extension

ดาวน์โหลดไฟล์ส่วนขยาย ServiceNow RPA Chrome Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ServiceNow RPA Chrome Extension ServiceNow RPA Chrome Extension
ID bnaofpgjajbimmicdiipemhmheafhgkb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/servicenow-rpa-chrome-ext/bnaofpgjajbimmicdiipemhmheafhgkb
คำอธิบาย ServiceNow RPA extension for chrome browser.
ขนาดไฟล์ 25.29 KB
จำนวนการติดตั้ง 1,378
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2024-01-23
วันที่เผยแพร่ 2022-03-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ServiceNow
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}