diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4373977
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+mango.zip
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index 4cf91da..57c338f 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2024 adrianvictor
+Copyright (c) 2024 Adrian Victor
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/README.MD b/README.MD
index e1a9055..5b0d050 100644
--- a/README.MD
+++ b/README.MD
@@ -1,17 +1,20 @@
# Mango
-Obliterates rounded corners... BECAUSE I HATE THEM
+I declare war to rouded corners!
-
-
+
+
+## Example
+
## How it works
-``* {
+```css
+* {
border-radius: 0 !important;
-}``
-That's everything we inject into your page, feel free to check the source code to be sure we're not doing anything malicious.
+}
+```
+This CSS tells your browser that everything (`*`) should have the property `border-radius` (amount of rounded corner) to 0.
-## Why 'Mango'
-Mango is the codename of the first Windows Phone OS to have a codename (Windows Phone 7.5). I had a WP as a child and I always loved the "minimalist square" design of Windows Phone.
+The extension just injects this into your page after checking if the page is whitelisted. This extension is so tiny that you can review `mango.js` and `main.js` by yourself or with help of AI.
-## Contributing
-Just do a pull request
\ No newline at end of file
+## Why Mango
+Mango is the codename of _Windows Phone 7.5_, the first version to adopt Microslop's "Metro UI". I grew up as a kid using Windows Phone and that shaped the way I see rounded corners—and I absolutely hate them.
\ No newline at end of file
diff --git a/img/Firefox-badges.jpg b/img/Firefox-badges.jpg
new file mode 100644
index 0000000..45917bf
Binary files /dev/null and b/img/Firefox-badges.jpg differ
diff --git a/mango.html b/mango.html
index e1e3020..d1a0b95 100644
--- a/mango.html
+++ b/mango.html
@@ -1,17 +1,20 @@