Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unordinarity/slidescape
New tab extension for Chrome and Firefox browsers
https://github.com/unordinarity/slidescape
chrome-extension new-tab new-tab-page
Last synced: 4 days ago
JSON representation
New tab extension for Chrome and Firefox browsers
- Host: GitHub
- URL: https://github.com/unordinarity/slidescape
- Owner: unordinarity
- Created: 2022-04-04T22:13:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-04-04T22:17:29.000Z (over 2 years ago)
- Last Synced: 2023-09-08T17:36:23.631Z (about 1 year ago)
- Topics: chrome-extension, new-tab, new-tab-page
- Language: TypeScript
- Homepage:
- Size: 28.3 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Code of conduct: docs/code_of_conduct.md
Awesome Lists containing this project
README
# Slidescape
Free open-source new tab extension for browsers
# Usage
Install as Google Chrome extension
Install as Firefox add-on
Open as a stand-alone web application
# Develop
Prerequisites:
- Node.js
- YarnInstall dependencies:
```shell
yarn
```Run project:
```shell
cd packages/client && yarn develop
```## Unsplash proxy
To use Unsplash backdrops you also need to run Unsplash proxy server
Register application and write your private key in `packages/server/.env` config
```dotenv
UNSPLASH_ACCESS=123456
```Then start server
```shell
cd packages/server && yarn develop
```Make sure proxy server listens same port as used in client in application
```dotenv
# packages/server/.env
PORT=3001# packages/client/.env
UNSPLASH_API=http://localhost:3001
```