Google Hangouts chat window enlarger

Enlarges the width of Google Hangouts chat windows

  1. // ==UserScript==
  2. // @name Google Hangouts chat window enlarger
  3. // @namespace taylus-google-hangouts-chat-window-enlarger
  4. // @description Enlarges the width of Google Hangouts chat windows
  5. // @version 1
  6. // @grant none
  7. // @match https://hangouts.google.com/*
  8. // ==/UserScript==
  9.  
  10. document.addEventListener("DOMNodeInserted", function(event) {
  11. var element = event.target;
  12. if (element.tagName == "DIV" && element.classList.contains("Cl")) {
  13. console.log("foo");
  14. element.style.width = "50%";
  15. }
  16. }, false);

QingJ © 2025

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