![bmc-button](https://private-user-images.githubusercontent.com/32397453/322677304-8da1edcc-2c3b-4628-8d82-4b53025a16ee.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNzg4ODMsIm5iZiI6MTczOTI3ODU4MywicGF0aCI6Ii8zMjM5NzQ1My8zMjI2NzczMDQtOGRhMWVkY2MtMmMzYi00NjI4LThkODItNGI1MzAyNWExNmVlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDEyNTYyM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWU0ZWQ5MTE5NjViZTc0MWViZjYwNWViYTc2MGM3ZDc5NzA1ZmZiYzM4YWU4OGM2NGFhODA0N2NjZmFmNWYxMWImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.4fInCcKzMti5TNZsxsxwb7ZL3IJcFYxTvSwMe4XFBsg)
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.
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!
Firefox
-
Copy the
manifest.xpi.json
file to thesrc
directory -
Rename it to
manifest.json
-
Click "Debug Add-ons"
-
Click "Load temporary Add-on..." and find the
src
directory
Chromium
-
Copy the
manifest.crx.json
file to thesrc
directory -
Rename it to
manifest.json
-
Open your extension settings
-
Toggle developer mode (Usually located on the same page)
-
Click "Load unpacked" and find the
src
directory
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