@leocg If I open in a new tab and go to chatgpt.com and when I type and press enter, the message sends, if thats what you mean. And I want it to be like that here as well, but it only makes a new line. I dont use other browsers, but other browsers also dont have the chatGPT sidebar thing. I use Opera GX on my home PC and IM pretty sure its the same there as well, Enter makes a new line instead of sending the message instantly.
Posts made by bvfi-dev
-
RE: Pressing ENTER to actually send the message in ChatGPT sidebar tabSuggestions and feature requests
-
Pressing ENTER to actually send the message in ChatGPT sidebar tabSuggestions and feature requests
Right now when I press enter after typing a message I get a new line in the ChatGPT chatbox in the sidebar. please please please, make it so that I press enter it sends the message, thats it. Should be a simple one liner JS, please before I lose my mind
-
RE: Dark mode settings are not working for websites and dev toolsGeneral
@metana Brave. Use Brave cos it uses Chromium(So, basically a better opera) and also blocks ads the way you are supposed to. The Dev of Brave is more considering when it comes to clogging your tab list with ads, unlike in Opera. Mozilla is good If u r web dev. Vivaldi is Edge 2.0, syncing is a nightmare last I used it and it was a buggy mess.
-
RE: Dark mode settings are not working for websites and dev toolsGeneral
I use the regular Opera Browser 114.0.5282.102. I can choose on the Theme options between "Browser Preferance", Light" Dark". When I open the inspector, its light mode, when I go to the options, it is shown as being set to "Dark". Switching to anything resets it. Opening and closing the inspector tab makes it white, no matter which option is chosen. Disabled all extensions to test if it was one of them, no difference. Extensions:
"Server IP", uBlock Origin, Zoho Vault, Session Buddy, Laravel TestTools (Disabled 98% of website visits) ImTranslator, Dislikes in YT. -
Aria AI always includes weird <link></link> tagsFeedback
When I ask about coding help, there's always some weird <link></link> tags and when I mention this to Aria, she can sometimes correct herself, but I have to do this for every new chat and it doesn't always work, which is annoying. I dont get what triggers it, I just ask normal coding questions:
-
Removing the Close button(x) on TabsOpera add-ons
Im trynna remove the close button on tabs, because when there are 100 tabs its hard to click it. I use MMB to close it anyways. I've got this so far
{ "manifest_version": 3, "name": "Remove X on tabs", "description": "Remove the X on tab", "version": "1.0", "content_scripts": [{ "matches": ["<all_urls>"], "css": ["default.css"] }] }
default.css
.tab-close { display: none !important; }
I have no idea whats the class name or how I can do this, but I think this code is pretty self explanatory of what I want to do. If anyone has any clue of how I can achieve this, help me out.