├── LICENSE
├── README.md
├── assets
├── bg.jpg
└── favicon.png
├── docs
└── screenshot.png
├── index.html
├── script.js
└── styles.css
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Tikaro
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Minimum Viable Startpage
2 |
3 | 
4 |
5 | This is a startpage I put together on one lazy afternoon. Cheers. :cat2:
6 |
7 | ## What is a startpage?
8 | A startpage is a small custom webpage that replaces the new tab page of your browser. It's usually done for the sake of aesthetics or to raise the efficiency of your day-to-day work with the Internet. (But mostly for aesthetics)
9 |
10 | ## Shortcuts
11 | MVS supports keyboard shortcuts, so you don't even have to use the mouse to get anywhere! By default shortcuts come in the Tab+KEY format. Tab in this case is the *shortcut starter* which tells the page to start listening for shortcuts. KEY is the actual shortcut unique to each item on the page. Both parts of a keyboard shortcut are customizable.
12 |
13 | Forgot which key led to which page? Simply pressing Tab will briefly flash all the shortcuts next to their relevant links.
14 |
15 | ## Customization
16 | To change the groups of links and keyboard shortcuts, change the `MASTER_MAP` object inside `script.js`. The syntax should be extremely intuitive.
17 |
18 | ## Installation
19 | To install this startpage and use it on your local machine, simply clone the repository and set your browser's new tab URL to the `index.html` filepath.
20 |
21 | (Note: Your browser may not support changing new tab's URL natively. I use [New Tab Redirect](https://chrome.google.com/webstore/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna) extension for Chrome.)
22 |
23 | ## Credits
24 | * [Wallpaper used for the background](https://wallpapercave.com/wp/VD8ldiL.jpg)
25 |
26 | ## License
27 | Distributed under the MIT license. See LICENSE for details.
28 |
--------------------------------------------------------------------------------
/assets/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/0-Tikaro/minimum-viable-startpage/a4fb4aea4474d635c4e4738f7d8c1a485d5d74c8/assets/bg.jpg
--------------------------------------------------------------------------------
/assets/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/0-Tikaro/minimum-viable-startpage/a4fb4aea4474d635c4e4738f7d8c1a485d5d74c8/assets/favicon.png
--------------------------------------------------------------------------------
/docs/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/0-Tikaro/minimum-viable-startpage/a4fb4aea4474d635c4e4738f7d8c1a485d5d74c8/docs/screenshot.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |