swapnil-verma-gl 2efea8c6d8
Rollback visibility rules cleanup (#4426)
* Revert "[ACS-9369] Updated rule-migration-guide.md to include missed rule (#4420)"

This reverts commit b3e2af7f0fc1dbd67186d03c98ea8b6f4ab19f47.

* Revert "[ACS-9369] Resolved issues where visibility rules with a single element array would log errors (#4416)"

This reverts commit 4e33f1126da07cf18c1896f7e839336e493b12cb.

* Revert "[ACS-8694] Cleanup of visibility rules for extensions in ACA (#4140)"

This reverts commit f1c4dcf45d0d0ce038109510004bf0edb66c6e66.
2025-03-03 16:56:13 +05:30

75 lines
1.7 KiB
JSON

{
"$schema": "../../../../extension.schema.json",
"$id": "9a635542-d87a-4558-ae64-ffa199d1a364",
"$version": "0.0.10",
"$name": "Edit in Office",
"$description": "Extension that provides Office Edit Online Action",
"$vendor": "Hyland Software, Inc. and its affiliates",
"$license": "LGPL-3.0",
"actions": [
{
"id": "aos.openWith.office",
"type": "AOS_ACTION",
"payload": "$(context.selection.first.entry)"
}
],
"features": {
"toolbar": [
{
"id": "app.toolbar.more",
"children": [
{
"id": "aos.toolbar.openWith.office",
"order": 90,
"icon": "edit",
"title": "AOS.ACTION_TITLE",
"actions": {
"click": "aos.openWith.office"
},
"rules": {
"visible": "aos.canOpenWithOffice"
}
}
]
}
],
"contextMenu": [
{
"id": "aos.context.openWith.office",
"order": 450,
"icon": "edit",
"title": "AOS.ACTION_TITLE",
"actions": {
"click": "aos.openWith.office"
},
"rules": {
"visible": "aos.canOpenWithOffice"
}
}
],
"viewer": {
"toolbarActions": [
{
"id": "app.viewer.toolbar.more",
"children": [
{
"id": "aos.viewer.openWith.office",
"order": 1,
"icon": "edit",
"title": "AOS.ACTION_TITLE",
"actions": {
"click": "aos.openWith.office"
},
"rules": {
"visible": "aos.canOpenWithOffice"
}
}
]
}
]
}
}
}