Katana for NinjaOne
This extension extends the functionality of NinjaOne.
什么是Katana for NinjaOne?
Katana for NinjaOne是由https://vertc.nl开发的Chrome扩展程序,该扩展的主要功能是“This extension extends the functionality of NinjaOne.”。
扩展截图
下载Katana for NinjaOne扩展crx文件
下载Katana for NinjaOne扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | jlkhefmehegjclbdmipbedombllgmgpd |
| 官方URL | https://chromewebstore.google.com/detail/katana-for-ninjaone/jlkhefmehegjclbdmipbedombllgmgpd |
| 简介 | This extension extends the functionality of NinjaOne. |
| 文件大小 | 88.8 KB |
| 安装次数 | 268 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2023-10-03 |
| 上架时间 | 2023-01-09 |
| 评分 | 2.33/5 共3次评分 |
| 开发者 | https://vertc.nl |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.vertc.nl/ |
| 帮助页面URL | https://github.com/Vertco/KatanaForNinjaOne/issues |
| 隐私政策页面URL | https://www.vertc.nl/Privacy-Policy |
| 支持的语言 | 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"
}
]
} | |