From 17fc55bb1cd55c12844dba60a3a21a78255a7726 Mon Sep 17 00:00:00 2001 From: Rosie <166664619+Hearts4Rosie@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:10:24 -0700 Subject: [PATCH] Create hi hi --- hi | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 hi diff --git a/hi b/hi new file mode 100644 index 00000000..bf8cec82 --- /dev/null +++ b/hi @@ -0,0 +1,25 @@ +{ + "name": "MyOperaGXMod", + "description": "A custom mod for Opera GX", + "version": "1.0", + "author": "Your Name", + "manifest_version": 3, + "content_scripts": [ + { + "matches": [""], + "js": ["script.js"], + "css": ["style.css"] + } + ] +} +// You can write your JavaScript code here to modify the behavior of Opera GX +console.log("MyOperaGXMod is loaded!"); + +// Example: Change the background color of the browser window +document.body.style.backgroundColor = "lightblue"; +/* You can write your CSS code here to style the browser interface */ +/* Example: Change the color of the address bar */ +.addressfield { + color: red !important; +} +