Katana for NinjaOne
This extension extends the functionality of NinjaOne.
Katana for NinjaOne là gì?
Katana for NinjaOne là một tiện ích mở rộng Chrome được phát triển bởi https://vertc.nl, và tính năng chính của nó là "This extension extends the functionality of NinjaOne.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Katana for NinjaOne
Tải xuống các tệp mở rộng Katana for NinjaOne dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The Katana extension adds dark theme support to NinjaOne aswell as adding a button to devices that sends the current device to a selected endpoint.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Katana for NinjaOne |
ID | jlkhefmehegjclbdmipbedombllgmgpd |
URL Chính Thức | https://chromewebstore.google.com/detail/katana-for-ninjaone/jlkhefmehegjclbdmipbedombllgmgpd |
Mô tả | This extension extends the functionality of NinjaOne. |
Kích Thước Tệp | 88.8 KB |
Số Lần Cài Đặt | 268 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2023-10-03 |
Ngày Phát Hành | 2023-01-09 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://vertc.nl |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.vertc.nl/ |
URL Trang Trợ Giúp | https://github.com/Vertco/KatanaForNinjaOne/issues |
URL Trang Chính Sách Bảo Mật | https://www.vertc.nl/Privacy-Policy |
Ngôn Ngữ Được Hỗ Trợ | de,en,fr,nl,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.3", "manifest_version": 3, "default_locale": "en", "description": "__MSG_appDesc__", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; connect-src https: 'self'" }, "permissions": [ "storage" ], "icons": { "16": "icons\/Katana_Favicon_16.png", "32": "icons\/Katana_Favicon_32.png", "48": "icons\/Katana_Favicon_48.png", "128": "icons\/Katana_Favicon_128.png" }, "action": { "default_popup": "popup\/home\/home.html" }, "background": { "service_worker": "scripts\/background.js" }, "web_accessible_resources": [ { "resources": [ "resources\/*" ], "matches": [ "https:\/\/eu.ninjarmm.com\/*", "https:\/\/*.rmmservice.eu\/*", "https:\/\/app.ninjarmm.com\/*", "https:\/\/*.rmmservice.com\/*", "https:\/\/oc.ninjarmm.com\/*", "https:\/\/*.rmmservice.com.au\/*", "https:\/\/ca.ninjarmm.com\/*", "https:\/\/*.rmmservice.ca\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/eu.ninjarmm.com\/*", "https:\/\/*.rmmservice.eu\/*", "https:\/\/app.ninjarmm.com\/*", "https:\/\/*.rmmservice.com\/*", "https:\/\/oc.ninjarmm.com\/*", "https:\/\/*.rmmservice.com.au\/*", "https:\/\/ca.ninjarmm.com\/*", "https:\/\/*.rmmservice.ca\/*" ], "js": [ "lib\/jquery.min.js", "scripts\/Katana_variables.js", "scripts\/Katana_functions.js", "scripts\/Katana_trigger_button.js", "scripts\/Katana_theme_button.js" ], "css": [ "scripts\/themeMenu.css" ], "run_at": "document_start" } ] } |