Initial commit.

This commit is contained in:
Adrian Victor 2024-10-23 20:51:54 -03:00
commit b582390d2c
6 changed files with 51 additions and 0 deletions

9
mango.js Normal file
View file

@ -0,0 +1,9 @@
var styles = `
* {
border-radius: 0 !important;
}
`
var injectedStyle = document.createElement("style")
injectedStyle.type = "text/css"
injectedStyle.innerText = styles
document.head.appendChild(injectedStyle)