Skip to content

Instantly share code, notes, and snippets.

@SeanMcP
Last active March 10, 2021 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanMcP/30e222ccd252082b4725f66d6f5eebf4 to your computer and use it in GitHub Desktop.
Save SeanMcP/30e222ccd252082b4725f66d6f5eebf4 to your computer and use it in GitHub Desktop.
Small improvements to the Google Meet UI
// ==UserScript==
// @name Google Meet UI Improvements
// @namespace https://seanmcp.com
// @version 0.2
// @description Small improvements to the Google Meet UI
// @author Sean McPherson
// @match https://meet.google.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
const style = document.createElement('style')
style.textContent = `
[role="button"][aria-label="Leave call"] {
margin-left: 80px;
margin-right: 80px;
}
`
style.dataset.id = 'gmui'
document.head.appendChild(style)
return '✨ Added styles to Google Meet UI'
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment