From 4f04feb2dad16248408666c09d22f4e9267a1e0e Mon Sep 17 00:00:00 2001 From: Daniel Vos <45820840+vosdev@users.noreply.github.com> Date: Mon, 3 Aug 2020 20:00:52 +0200 Subject: Add chrome extension for a custom new tab page I finally found a chrome extension that gives the same functionality as the firefox extension for the custom new tab page. I have updated the docs accordingly! --- docs/tips-and-tricks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/tips-and-tricks.md b/docs/tips-and-tricks.md index fda670d..175c271 100644 --- a/docs/tips-and-tricks.md +++ b/docs/tips-and-tricks.md @@ -5,9 +5,9 @@ Here is a collection of neat tips and tricks that Homer users have come up with! ## Use Homer as a custom "new tab" page #### `by @vosdev` -This [extension](https://addons.mozilla.org/firefox/addon/custom-new-tab-page) allows you to have your homer dashboard in your new tab page, while leaving focus on the address bar meaning you can still type right away if you want to search or go to a page that is not on your homer dash. +These extensions for [Firefox](https://addons.mozilla.org/firefox/addon/custom-new-tab-page) and [Chrome & Friends](https://chrome.google.com/webstore/detail/new-tab-changer/occbjkhimchkolibngmcefpjlbknggfh) allow you to have your homer dashboard in your new tab page, while leaving focus on the address bar meaning you can still type right away if you want to search or go to a page that is not on your homer dash. -The extension loads Homer in an iframe on your new tab page, meaning you have to add `target: '_top'` to each of your items. +The firefox extension loads Homer in an iframe on your new tab page, meaning you have to add `target: '_top'` to each of your items. ```yaml - name: "Reddit" -- cgit v1.2.3 From 71cf63eb3bdeeced46e7eec4d62ef8cc4ca38800 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Wed, 22 Jul 2020 16:23:33 -0500 Subject: :pencil: Document new stylesheet config --- docs/configuration.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs') diff --git a/docs/configuration.md b/docs/configuration.md index 1ced2d8..f0b0a31 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -26,6 +26,10 @@ connectivityCheck: true # whether you want to display a message when the apps ar # Optional theming theme: default # 'default' or one of the theme available in 'src/assets/themes'. +# Optional custom stylesheet +# Will load a custom CSS file. Especially useful for custom icon sets. +# stylesheet: "assets/custom.css" + # Here is the exaustive list of customization parameters # However all value are optional and will fallback to default if not set. # if you want to change only some of the colors, feel free to remove all unused key. -- cgit v1.2.3 From 8e5ee54a7896ac8db720093f30cab8e7a0fddda1 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Sat, 29 Aug 2020 02:43:02 -0500 Subject: :wrench: Make stylesheet config be an array of files --- docs/configuration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/configuration.md b/docs/configuration.md index f0b0a31..edcf1ed 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -27,8 +27,9 @@ connectivityCheck: true # whether you want to display a message when the apps ar theme: default # 'default' or one of the theme available in 'src/assets/themes'. # Optional custom stylesheet -# Will load a custom CSS file. Especially useful for custom icon sets. -# stylesheet: "assets/custom.css" +# Will load custom CSS files. Especially useful for custom icon sets. +# stylesheet: +# - "assets/custom.css" # Here is the exaustive list of customization parameters # However all value are optional and will fallback to default if not set. -- cgit v1.2.3