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.
- Host: GitHub
- URL: https://github.com/lanvalird/lokika
- Owner: lanvalird
- License: mit
- Created: 2025-04-27T02:05:21.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-04-08T20:42:21.000Z (3 months ago)
- Last Synced: 2026-04-08T22:25:46.774Z (3 months ago)
- Topics: chrome-extension, chrome-extensions, homepage, javascript, manifest-v3, startpage, tailwind, tailwindcss, vite, vitejs, vue, vue-router
- Language: Vue
- Homepage:
- Size: 634 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lokika Homepage
The extension overwrites the browser's (Google Chrome) home page.

## [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"
}
}
```