LittleHome/manifest.json
2026-03-22 01:36:00 +03:00

29 lines
No EOL
579 B
JSON

{
"manifest_version": 3,
"name": "LittleHome",
"version": "0.2",
"description": "My personal homepage with bangs support",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"48": "src/icon.svg"
},
"action": {
"default_icon": "src/icon.svg"
},
"chrome_url_overrides": {
"newtab": "src/index.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/js/main.js"
]
}
]
}