LittleHome/manifest.json
2025-05-13 23:33:10 +03:00

28 lines
No EOL
546 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": [
]
}
]
}