character ai edit message border removal

Removes the annoying blue edit border

  1. // ==UserScript==
  2. // @name character ai edit message border removal
  3. // @namespace made by joshclark756
  4. // @version 1.0
  5. // @description Removes the annoying blue edit border
  6. // @author joshclark756
  7. // @match https://character.ai/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. const styles = document.createElement('style');
  15. styles.innerHTML = '.border-blue { border-color: transparent !important; }';
  16. document.head.appendChild(styles);
  17. }());