Google Hangouts chat window enlarger

Enlarges the width of Google Hangouts chat windows

// ==UserScript==
// @name        Google Hangouts chat window enlarger
// @namespace   taylus-google-hangouts-chat-window-enlarger
// @description Enlarges the width of Google Hangouts chat windows
// @version     1
// @grant       none
// @match	https://hangouts.google.com/*
// ==/UserScript==

document.addEventListener("DOMNodeInserted", function(event) {
  var element = event.target;
  if (element.tagName == "DIV" && element.classList.contains("Cl")) {
    console.log("foo");
  	element.style.width = "50%"; 
  }
}, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址