Greasy Fork is available in English.

Twitter Move DM Tab

This moves the little Twitter DM popup tab on the bottom right a little further to the left

// ==UserScript==
// @name     Twitter Move DM Tab
// @version  1
// @include  https://twitter.com*
// @grant    none
// @description This moves the little Twitter DM popup tab on the bottom right a little further to the left
// @license MIT
// @namespace https://greasyfork.org/users/856630
// ==/UserScript==




var wait = setInterval(checkForElem,100)

function checkForElem(){
  var elem = document.querySelectorAll("[data-testid=\"DMDrawer\"]")
	if (elem.length != 0){
  	clearInterval(wait)
    elem[0].style.marginRight = "20vw"
  }
  
}