An open API service indexing awesome lists of open source software.

https://github.com/lanvalird/lokika

The extension overwrites the browser's (Google Chrome) home page.
https://github.com/lanvalird/lokika

chrome-extension chrome-extensions homepage javascript manifest-v3 startpage tailwind tailwindcss vite vitejs vue vue-router

Last synced: 2 months ago
JSON representation

The extension overwrites the browser's (Google Chrome) home page.

Awesome Lists containing this project

README

          

# Lokika Homepage

The extension overwrites the browser's (Google Chrome) home page.

![Screenshot](./screenshots/image.png)

## [manifest.json](./manifest.json)

```json
{
"name": "Lokika Homepage",
"description": "Pretty startpage for you",
"version": "1.0",
"manifest_version": 3,
"homepage_url": "https://github.com/lanvalird/lokika",
"action": {
"default_popup": "popup.html"
},
"options_page": "settings.html",
"chrome_url_overrides": {
"newtab": "index.html"
},
"permissions": ["search", "storage"],
"background": {
"service_worker": "src/background.ts",
"type": "module"
}
}
```