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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ServiceNow RPA Chrome Extension
قم بتنزيل ملفات الامتداد ServiceNow RPA Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension enables ServiceNow RPA Desktop Design Studio, Attended Robots, and Unattended Robots to interact with the Chrome browser.
معلومات أساسية عن التمديد
الاسم | 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" ] } |