Files
sciezka/manifest.json
T
avinal eae5309843 feat: project infrastructure and MV3 extension setup
TypeScript + esbuild build system, Manifest V3 with background script,
content script for iframe overlay injection, and typed message contracts
between extension contexts.

Assisted-by: Claude Code
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
2026-04-20 17:14:35 +05:30

45 lines
895 B
JSON

{
"manifest_version": 3,
"name": "Sciezka",
"version": "0.1.0",
"description": "A browser extension to fuzzy search tabs, history and bookmarks.",
"icons": {
"48": "icons/border-48.png"
},
"permissions": [
"tabs",
"history",
"bookmarks",
"sessions",
"storage"
],
"background": {
"scripts": ["dist/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/content.js"],
"run_at": "document_idle"
}
],
"commands": {
"toggle-sciezka": {
"suggested_key": {
"default": "Alt+K"
},
"description": "Toggle Sciezka search"
}
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": ["sciezka.html", "sciezka.css", "dist/sciezka.js"],
"matches": ["<all_urls>"]
}
]
}