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.」です。
拡張機能のスクリーンショット
ServiceNow RPA Chrome Extension拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |