GitHub Trending, Hacker News and Product Hunt, on every new tab!
Devo is a Google Chrome and Mozilla Firefox extension that displays GitHub Trending, Hacker News, Product Hunt and more platforms on every new tab. It caches the information for 30 minutes, so that there is no extra calls to the external services, hence allowing a faster experience.
Devo can be installed for Chrome here, and Firefox here.
For installation on Safari:
- Once deployed, update homepage on safari.
Devo currently supports:
Adding a new platform is super easy. All you need to do is:
- add a body component that will be displayed in the cards.
- export the body component from the
src/components/bodies.js
file. - add the details for the platform to the
src/settings.js
file. - add the state to the
src/store.js
file.
You can check the HackerNews component to see how easy it is to add a new platform. Feel free to submit pull requests or ask questions regarding adding a new platform, any kind of input is appreciated.
First of all, you need to install the dependencies. After that, you can run the build command and the optimized bundle will be created in dist/
directory:
npm install # install the dependencies.
npm run build # build the optimized bundle.