Created
September 5, 2022 07:57
-
-
Save Kjue/c59941420e74d98e65ba3a3977fff703 to your computer and use it in GitHub Desktop.
Tampermonkey script: Move Teams Call Bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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