Skip to content

Commit d1a20d7

Browse files
Add details to frame window subfield
1 parent d801c7d commit d1a20d7

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/References/Manifest Format.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,18 @@ Beware, if frame is also set to false in fullscreen it will prevent the mouse fr
263263

264264
* `{Boolean}` specify it to `false` to make the window frameless
265265

266-
Beware, if frame is set to false in fullscreen it will prevent the mouse from being captured on the very edges of the screen. You should avoid activate it if fullscreen is also set to true.
266+
Beware, if frame is set to false in fullscreen it will prevent the mouse from being captured on the very edges of the screen. You should avoid activating it if fullscreen is also set to true.
267+
268+
Frameless apps do not have a title bar for the user to click and drag the window. You can use CSS to designate DOM elements as draggable regions.
269+
270+
```css
271+
.drag-enable {
272+
-webkit-app-region: drag;
273+
}
274+
.drag-disable {
275+
-webkit-app-region: no-drag;
276+
}
277+
```
267278

268279
### show
269280

0 commit comments

Comments
 (0)