Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kckarnige/ecstatab
A simple new tab extension meant to stay out of your way while still making for great eye-candy.
https://github.com/kckarnige/ecstatab
addon chrome-extension chromium-extension extension firefox-addon firefox-extension new-tab unsplash unsplash-api
Last synced: about 2 months ago
JSON representation
A simple new tab extension meant to stay out of your way while still making for great eye-candy.
- Host: GitHub
- URL: https://github.com/kckarnige/ecstatab
- Owner: kckarnige
- License: gpl-3.0
- Created: 2023-12-13T12:23:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T02:31:55.000Z (10 months ago)
- Last Synced: 2024-12-17T08:44:25.655Z (about 2 months ago)
- Topics: addon, chrome-extension, chromium-extension, extension, firefox-addon, firefox-extension, new-tab, unsplash, unsplash-api
- Language: JavaScript
- Homepage:
- Size: 1.81 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
### What is this?
A very simple new tab page extension meant to stay out of your way while still being a pleasant distraction for those who need something to look at while they think.### Can I change the types of backgrounds I look at?
You can, just hit the reload button and you should get a new image!
Don't wanna see the beaches and oceans anymore? You can go to the settings side panel and change the search query!## Installation
[![firefox](https://blog.mozilla.org/addons/files/2015/11/get-the-addon.png)](https://addons.mozilla.org/en-US/firefox/addon/ecstatab/)
[![chromium](https://storage.googleapis.com/web-dev-uploads/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/UV4C4ybeBTsZt43U4xis.png)](https://chromewebstore.google.com/detail/ecsta/jpdnfbcjclmhlebikidldibdlgjindpl)### Installation from Source
Firefox
1. Copy the `manifest.xpi.json` file to the `src` directory
2. Rename it to `manifest.json`
3. Open your extension settings and click on the gear icon
![help1](./help1.png)
4. Click "Debug Add-ons"
5. Click "Load temporary Add-on..." and find the `src` directory
Chromium
1. Copy the `manifest.crx.json` file to the `src` directory
2. Rename it to `manifest.json`
3. Open your extension settings4. Toggle developer mode *(Usually located on the same page)*
5. Click "Load unpacked" and find the `src` directory
### Build from Source
With Python installed, run `build.py` in your terminal with the argument of what type of extension you want.Chromium: `python3 build.py crx`
Firefox: `python3 build.py xpi`
Both: `python3 build.py both`> *This has only been tested with Python 3.10.11 on Windows*