All Projects → manilarome → The Glorious Startpage

manilarome / The Glorious Startpage

Licence: mit
a glorified startpage

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to The Glorious Startpage

Wpt
Test suites for Web platform specs — including WHATWG, W3C, and others
Stars: ✭ 3,573 (+2713.39%)
Mutual labels:  firefox, google-chrome
Overlay-Scrollbars
🎨 An overlay scrollbar customizable theme for Firefox and Chrome based browsers
Stars: ✭ 87 (-31.5%)
Mutual labels:  firefox, google-chrome
Smart-Text-Editor
The text editor that requires only a browser and a keyboard!
Stars: ✭ 60 (-52.76%)
Mutual labels:  vanilla-javascript, google-chrome
Uget Chrome Wrapper
Moved to https://github.com/ugetdm/uget-integrator and https://github.com/ugetdm/uget-extension
Stars: ✭ 74 (-41.73%)
Mutual labels:  firefox, google-chrome
Cookie Autodelete
Firefox and Chrome WebExtension that deletes cookies and other browsing site data as soon as the tab closes, domain changes, browser restarts, or a combination of those events.
Stars: ✭ 1,015 (+699.21%)
Mutual labels:  firefox, google-chrome
Chrome Remote Interface
Chrome Debugging Protocol interface for Node.js
Stars: ✭ 3,603 (+2737.01%)
Mutual labels:  firefox, google-chrome
alfred-bookmarks
bookmark search with alfred workflow written in Go
Stars: ✭ 24 (-81.1%)
Mutual labels:  firefox, google-chrome
Awesome Meta And Manifest
⚡ Awesome collection of meta tags & manifest properties.
Stars: ✭ 499 (+292.91%)
Mutual labels:  firefox, google-chrome
Fauxbar
An alternative to Chrome's Omnibox.
Stars: ✭ 69 (-45.67%)
Mutual labels:  firefox, google-chrome
Squareup
A sleek and modern startpage
Stars: ✭ 75 (-40.94%)
Mutual labels:  firefox, vanilla-javascript
Page Translator
One-click in-line page translation for Firefox
Stars: ✭ 114 (-10.24%)
Mutual labels:  firefox
Web Extension Starter
Typescript, React, Redux, Styled-Component and Webpack based sample extension boilerplate. Runs on Chrome and Firefox. Sample chrome extension.
Stars: ✭ 115 (-9.45%)
Mutual labels:  firefox
Newtaboverride
New Tab Override allows you to set the page that shows whenever you open a new tab.
Stars: ✭ 120 (-5.51%)
Mutual labels:  firefox
Kdeconnect Chrome Extension
A browser extension to send pages and content from your browser to connected KDE Connect devices.
Stars: ✭ 124 (-2.36%)
Mutual labels:  firefox
Materialfox
A Material Design-inspired userChrome.css theme for Firefox
Stars: ✭ 1,690 (+1230.71%)
Mutual labels:  firefox
Librefox
License: Mozilla Public License 2.0
Stars: ✭ 1,574 (+1139.37%)
Mutual labels:  firefox
Startpages
Startpages for your favorite browser!
Stars: ✭ 109 (-14.17%)
Mutual labels:  firefox
Rallax.js
Dead simple parallax scrolling.
Stars: ✭ 1,441 (+1034.65%)
Mutual labels:  vanilla-javascript
A11y accordions
ES5 ARIA Accordion Component
Stars: ✭ 108 (-14.96%)
Mutual labels:  vanilla-javascript
Firefox Ios
Firefox for iOS
Stars: ✭ 10,638 (+8276.38%)
Mutual labels:  firefox

A bloated and modern-looking startpage

maintained contributions HitCount Codacy Badge

Live Preview

Gallery

Search Autosuggestion Settings
screenshot screenshot
Web Menu Weather Forecast
screenshot screenshot

Features

  • Responsive UI
  • Web Search Suggestions
  • Mobile Support with Swipe Gestures
  • Theme Settings - Change colors on-the-fly
  • Weather Forecast - OpenWeatherMap and Geolocation Integration
  • Search Engine Selection
  • Dynamic Background
  • Web Menu with Fuzzy Search
  • Keyboard Navigation
  • Vanilla Javascript!
  • And many bugs!

Keybindings

  • alt + S - toggles dashboard
  • alt + E - toggles web menu
  • alt + X - toggles weather screen
  • Escape - close panels/toggles web menu
  • Backspace - toggles search box

Swipe gestures

  • swipe right - opens web menu
  • swipe left - opens dashboard
  • swipe up - opens weather screen
  • swipe down - opens search box

Quick search

  • r/ + subreddit name will open the subreddit.
  • w/ + search query to search in wikipedia.
  • u/ + search query to search for an image/photo in unsplash.
  • a/ + search query to search a product in amazon.
  • e/ + search query to search a product in ebay.
  • y/ + search query to search a video in youtube.
  • n/ + comic id to search a "comic" in a certain "comic" website.

Customization and Settings

Changing the colors, blur strength, and animation speed on-the-fly

  • Open the dashboard by clicking the settings button on the dock.
  • Change the color and blur strength by setting it on the Theme Engine section.
  • Color settings supports #RGB, #RRGGBB, and #RRGGBBAA.
  • Blur strength settings only allows integer with px suffix.
  • Animation speed supports s and ms.

Adding more buttons on the web menu

Add more buttons or web shortcuts in web menu by editing the webSites array in js/config.js. Make sure to put an icon with svg format for the shortcut in assets/webcons/ folder.

const webSites = [
	{
		site: 'Reddit',
		icon: 'reddit',
		url: 'https://reddit.com/',
		category: 'social'
	},
	...
]

Adding more buttons on the dock

To add more web shortcuts/buttons in the dock, you have to edit the dockSites array in js/config.js. Make sure to put an icon with svg format for the shortcut in assets/webcons/ folder.

const dockSites = [
	{
		site: 'Reddit',
		icon: 'reddit',
		url: 'https://reddit.com/'
	},
	...
]

Adding more search engine in selection

Add more search engine in selection by editing the searchEngines object in js/config.js. Make sure to follow the format below:

const searchEngines = {
	'duckduckgo': {
		name: 'Duckduckgo',
		prefix: 'https://duckduckgo.com/?q='
	},
	...
}

Adding more quick search urls

Add more quick search shortcuts by editing the quickSearchData object in js/config.js. Make sure to follow the format below:

const quickSearchData = {
	'r/': {
		urlPrefix: 'https://reddit.com/r/'
	},
	...

Set your OpenWeatherMap API key

Setting up your OpenWeatherMap credential is a breeze.

  • If you don't have an API key, follow this guide:

    How to get a credentials for the weather forecast?

    • OpenWeatherMap is the weather provider, so go to OpenWeatherMap's website.
    • Register, log-in, and then go here to generate your very own API keys.
  • After this you can choose two locator modes - Geolocation and City.

  • In City Mode, you have to get your City ID in OpenWeatherMap website.

  • While Geolocation mode offers GPS tracking. You don't need to get an ID. Note that you must allow the location permission request.

  • Put your API key in the Weather Settings.

  • It's recommended to still put your City ID if you plan to use the geolocation mode.

  • Apply.

Note:

  • If you're using firefox and you're planning to use the geolocation, make sure to set the value of geo.provider.network.url to https://location.services.mozilla.com/v1/geolocate?key=test in about:config. Google changed its policies, so now it requires a valid API key when accessing their geolocation service. This tells us that you need a valid API key in place of %GOOGLE_LOCATION_SERVICE_API_KEY%. Citation.

  • If you're on mobile, make sure to enable your GPS and allow the location permission if you want to use geolocation.

  • If you just set the startpage locally, the location permission will always pop-up even if you already accept/denied it. It's better to run it on a web server.

Changing the default search engine

Google is the default search engine of the search bar, if you want to change it to DuckDuckGo or something:

  • Open the dashboard by clicking the settings button on the dock.
  • Find the Search Engine section and select your preferred search engine.
  • Set it as default.

Changing the profile picture

  • Replace the user.png image file in assets/.

Changing the background image

The background image changes based on time.

  • Change the background images in assets/backgrounds/.
  • Make sure that it is in a webp format.
  • A lower resolution of each images are also required.

Keybindings

  • You can add, replace, or remove a keybinding by editing js/keybindings.js.

Important Note

  • Make sure that javascript is enabled!

  • If you're using NoScript and Dark Mode Reader extensions make sure to disable them on the starpage! NoScript will disable javascript making this startpage useless. While, Dark Mode Reader will change the ligher CSS colors to dark, ruining the design.

  • If you're using firefox and blur effect is not enabled, open about:config, accept the risks, find layout.css.backdrop-filter.enabled, and set it to true to enable it. Refresh the startpage.

  • If you're using firefox and planning to use the geolocation, set the value of geo.provider.network.url to https://location.services.mozilla.com/v1/geolocate?key=test in about:config.

  • The code could be better, this is my first time writing a startpage from the ground up. I will improve this from time to time.

  • Found a bug, error or do you have a suggestion? Feel free to open an issue or pull request.

  • Tested only on Firefox and Google Chrome.

TODO

  • [x] GUI Settings
  • [x] Weather Forecast
  • [x] Dynamic Background
  • [x] Cleaner codeWIP
  • [x] Keyboard navigation
  • [x] Swipe gestures for mobile
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].