ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

ServiceNow RPA Chrome Extension란 무엇입니까?

ServiceNow RPA Chrome Extension은(는) ServiceNow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ServiceNow RPA extension for chrome browser."입니다.

확장 프로그램 스크린샷

screenshot

ServiceNow RPA Chrome Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}