mirror of
https://github.com/avinal/sciezka.git
synced 2026-07-03 23:30:09 +05:30
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>
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"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>"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user