ChatGPT Version in Header

To make the ChatGPT version in each chat located in the top.

  1. /* ==UserStyle==
  2. @name ChatGPT Version in Header
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.4
  5. @description To make the ChatGPT version in each chat located in the top.
  6. @author CY Fung
  7. @license MIT
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("chat.openai.com") {
  11. /* Insert code here... */
  12. main.flex>div.flex-1>div:first-child>div:first-child>div.flex:first-child>div.flex:first-child:nth-last-child(n+3) {
  13. position: sticky;
  14. top: 0;
  15. z-index: 999;
  16. background-color: #182436;
  17. }
  18. }