Skip to content

Instantly share code, notes, and snippets.

@Kjue
Created September 5, 2022 07:57
Show Gist options
  • Save Kjue/c59941420e74d98e65ba3a3977fff703 to your computer and use it in GitHub Desktop.
Save Kjue/c59941420e74d98e65ba3a3977fff703 to your computer and use it in GitHub Desktop.
Tampermonkey script: Move Teams Call Bar
// ==UserScript==
// @name Move Teams Call Bar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Move the call functions bar on Microsoft Teams
// @author Mikael Lavi <[email protected]>
// @match https://teams.microsoft.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.styleSheets[0].insertRule(".calling-unified-bar { bottom: undefined !important; top: 0.5em !important; }", 0)
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment