You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-5Lines changed: 28 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -431,14 +431,37 @@ To make one or more of your panels an invisible panel, aka hidden from the Exten
431
431
]
432
432
```
433
433
434
+
If you want the extension to be completely headless without any UI, make sure to set the `type` to Custom as well:
435
+
436
+
```js
437
+
panels: [
438
+
{
439
+
mainPath:"./main/index.html",
440
+
name:"Invisible Bolt CEP",
441
+
panelDisplayName:"",
442
+
type:"Custom",
443
+
...
444
+
}
445
+
]
446
+
```
447
+
434
448
You'll want to ensure your panel can be launched from another panel with `csi.requestOpenExtension()` or with an auto-start event in `startOnEvents` in `cep.config.ts` event depending on the app:
435
449
436
450
```js
437
-
startOnEvents: [
438
-
"com.adobe.csxs.events.ApplicationActivate",
439
-
"com.adobe.csxs.events.ApplicationInitialized",
440
-
"applicationActivate",
441
-
],
451
+
panels: [
452
+
{
453
+
mainPath:"./main/index.html",
454
+
name:"Invisible Bolt CEP",
455
+
panelDisplayName:"",
456
+
type:"Custom",
457
+
startOnEvents: [
458
+
"com.adobe.csxs.events.ApplicationActivate",
459
+
"com.adobe.csxs.events.ApplicationInitialized",
460
+
"applicationActivate",
461
+
],
462
+
...
463
+
}
464
+
]
442
465
```
443
466
444
467
Reference the [Adobe CEP Cookbook](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md) for more info on [invisible panels](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md#invisible-html-extensions) and [CEP events](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md#invisible-html-extensions)
0 commit comments