Wide Chat Input in Gemini

Change the width the conversation box in Gemini.

  1. // ==UserScript==
  2. // @name Wide Chat Input in Gemini
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-03-07
  5. // @description Change the width the conversation box in Gemini.
  6. // @author You
  7. // @match https://gemini.google.com/app/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. setInterval(function() {
  15. var elements = document.querySelectorAll('.conversation-container')
  16. for (var i = 0; i < elements.length; i++) {
  17. elements[i].style.maxWidth = '80%'
  18. }
  19. }, 100)
  20. })();

QingJ © 2025

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