mirror of
https://github.com/avinal/sciezka.git
synced 2026-07-03 23:30:09 +05:30
5211fa1f8f
Bump strict_min_version to 142.0 for data_collection_permissions support, and replace all innerHTML usage with safe DOM APIs. Assisted-by: Claude Code Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Sciezka",
|
|
"version": "0.1.0",
|
|
"description": "A browser extension to fuzzy search tabs, history and bookmarks.",
|
|
"icons": {
|
|
"48": "icons/icon-48.png",
|
|
"96": "icons/icon-96.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "sciezka@avinal.space",
|
|
"strict_min_version": "142.0",
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"history",
|
|
"bookmarks",
|
|
"sessions",
|
|
"storage"
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data:;"
|
|
},
|
|
"background": {
|
|
"scripts": ["dist/background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["dist/content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"commands": {
|
|
"toggle-sciezka": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Space"
|
|
},
|
|
"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>"]
|
|
}
|
|
]
|
|
}
|