https://github.com/verlok/google-meet-true-full-screen
A bookmarklet for toggling real full screen on Google Meet
https://github.com/verlok/google-meet-true-full-screen
Last synced: 6 months ago
JSON representation
A bookmarklet for toggling real full screen on Google Meet
- Host: GitHub
- URL: https://github.com/verlok/google-meet-true-full-screen
- Owner: verlok
- Created: 2024-11-05T16:27:34.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T17:34:17.000Z (12 months ago)
- Last Synced: 2025-03-29T11:23:29.993Z (7 months ago)
- Language: JavaScript
- Size: 8.07 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Meet _true_ Full Screen
## What this is
**A bookmarklet for toggling real full screen on Google Meet.**
Before
After
## How to create your bookmarklet
Copy the following code:
```js
const jsCtrlId = 'hVZhab'; for (const controller of document.querySelectorAll(`[jscontroller="${jsCtrlId}"]`)) if (controller.style.display === '') controller.style.display = 'none'; else controller.style.display = '';
```Open [Caio Rordrigues' Bookmarklet Maker](https://caiorss.github.io/bookmarklet-maker/) in a new tab.
In the bookmarklet maker:
- Give your bookmarklet a title. This is the text you will see in the bookmarks bar. Example: `GMeet Full`.
- Paste the code you copied before into the "Code" section.
- Click "Generate bookmarklet"
- Below, you will see `Bookmaklet:` followed by the title you chose, e.g. `GMeet Full`.
- Drag that bookmarklet in your bookmarks bar.Now, you have a new bookmark with the title you chose, e.g. `GMeet Full`.
**During Google Meet calls, you can click on the bookmark to hide the top bar, the bottom bar, and the controls. Click it again to bring back everything.**