1) Install the extension: Amino -
https://chrome.google.com/webstore/deta ... f?hl=en-US
2) Now navigate to the church website, then open the extension and hit the button that says domain in the extension window
3) Paste this script inside the editor and hit save
now keep in mind that this is a CSS script, meaning that there is no possible way for it to steal your information...
NOTE: This was not made for the main website, but will work very well somewhere like here for an example:
https://www.churchofjesuschrist.org/stu ... n?lang=eng
:not(span) {
background: transparent !important;
color: white !important;
}
html:root {
--background-primary: rgb(46, 46, 46);
}
#app, header, nav, body, html, #flexContainer, article, section, section * {
background: var(--background-primary) !important;
}
a, .tree_item, .branch, select, *::after, .iconLink, #PFmainNavLinks, button path {
color: skyblue !important;
text-shadow: 0 0 7.5px lime !important;
fill: skyblue !important;
}
a:visited, .currentselected {
&, * {
color: powderblue !important;
}
}
img, svg, svg * {
background: radial-gradient(rgba(191, 255, 0, .3), transparent 75%) !important;
}
path {
fill: white;
}
nav ul span {
border-radius: 5px;
}
.navArrow {
box-shadow: inset 0 0 10px skyblue;
margin: 2px;
}
a::after {
background: inherit !important;
}
* {
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px 3px 3px 5px !important;
background: gray !important;
&:hover {
background: dimgray !important;
}
}
::-webkit-scrollbar-track {
background: rgba(0,0,0, 0.1) !important;
}
}