diff --git a/README.md b/README.md
index e74cb52c..e3775765 100644
--- a/README.md
+++ b/README.md
@@ -88,6 +88,7 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Click Load unpacked (Make sure Developer Mode is on)
Go to the directory containing the built copy of Mue and click ok
Enjoy your new tab!
+
Opera (Click to expand)
@@ -98,6 +99,7 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Click Load unpacked extension... (Make sure Developer Mode is on)
Go to the directory containing Mue and click ok
Enjoy your new tab!
+
Firefox (Click to expand)
@@ -113,20 +115,23 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Other (Click to expand)Note: To get the full new tab experience, set your browser to open the index.html on startup and tab open!
-
-
yarn run build or npm run build
-
Open the index.html in your browser
-
Enjoy your new tab!
-
+
+
yarn run build or npm run build
+
Open the index.html in your browser
+
Enjoy your new tab!
+
## Credits
-### Maintainers
+### Core Team
+#### Maintainers
[David Ralph (ohlookitsderpy)](https://github.com/ohlookitsderpy) - Founder, Lead development, Photographer
+
[Alex Sparkes](https://github.com/alexsparkes) - Name, Lead design, Photographer
-### Contributors
+#### Developers
[Wessel Tip](https://github.com/Wessel) - Development
+
[Isaac (Eartharoid)](https://github.com/eartharoid) - QA, Development, Photographer
### Translators
@@ -138,9 +143,13 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
[Pronin Egor](https://github.com/MrZillaGold) - Russian
-### Other
+[Vicente](https://github.com/Vicente015) - Spanish
+
+### Resources
[Pexels](https://pexels.com) - Stock photos used for offline mode
[Opera Forum](https://forums.opera.com/topic/25046/how-to-disable-completely-the-speed-dial/14) - Portions of code to add Opera support
-And many thanks to [Highholding](https://discord.bio/p/highholding), [Noa Shapira](#), [Roee Lupo](https://github.com/RoeeLupo), [Jeroen](#), [Glasvegas](https://twitter.com/_glasvegas), [Anders](https://github.com/FuryingFox), [Oded Shapira](https://twitter.com/dondishdev), Jacob Tyrrell and [Nikka Lai](#) for letting us use their wonderful photographs
+Many thanks to [Highholding](https://discord.bio/p/highholding), [Noa Shapira](#), [Roee Lupo](https://github.com/RoeeLupo), [Jeroen](#), [Glasvegas](https://twitter.com/_glasvegas), [Anders](https://github.com/FuryingFox), [Oded Shapira](https://twitter.com/dondishdev), Jacob Tyrrell and [Nikka Lai](#) for letting us use their wonderful photographs.
+
+And finally, a big thank you to all the [contributors](https://github.com/mue/mue/graphs/contributors)!
\ No newline at end of file
diff --git a/package.json b/package.json
index 9a0440dd..b13de57f 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"David \"ohlookitsderpy\" Ralph (https://derpyenterprises.org)",
"Alex \"TurboMarshmello\" Sparkes (https://github.com/alexsparkes)"
],
- "description": "Fast, open and free-to-use new tab page for most modern browsers.",
+ "description": "Fast, open and free-to-use new tab page for modern browsers.",
"repository": {
"url": "github:mue/mue"
},
diff --git a/src/components/modals/settings/Dropdown.jsx b/src/components/modals/settings/Dropdown.jsx
new file mode 100644
index 00000000..ea65294d
--- /dev/null
+++ b/src/components/modals/settings/Dropdown.jsx
@@ -0,0 +1,20 @@
+import React from 'react';
+
+export default class Dropdown extends React.PureComponent {
+ getLabel() {
+ return this.props.label ? : null;
+ }
+
+ render() {
+ return (
+
+ {this.getLabel()}
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/components/modals/settings/sections/BackgroundSettings.jsx b/src/components/modals/settings/sections/BackgroundSettings.jsx
index 6f82164c..4d912d89 100644
--- a/src/components/modals/settings/sections/BackgroundSettings.jsx
+++ b/src/components/modals/settings/sections/BackgroundSettings.jsx
@@ -1,6 +1,7 @@
import React from 'react';
import { toast } from 'react-toastify';
import Checkbox from '../Checkbox';
+import Dropdown from '../Dropdown';
import Section from '../Section';
export default class BackgroundSettings extends React.PureComponent {
@@ -160,13 +161,15 @@ export default class BackgroundSettings extends React.PureComponent {