tabswitcher/manifest.json
gmalvone aee213e96d Feat: Add configurable font setting and fix Windows font fallback
Added extension options page and configurable font settings. Fixed font fallback issue on Windows.
2026-01-29 16:34:39 +00:00

37 lines
No EOL
719 B
JSON

{
"manifest_version": 3,
"name": "Tabswitcher",
"version": "1.1.2",
"description": "The musthave extension for a mouse-free Firefox experience",
"homepage_url": "https://github.com/He4eT/tabswitcher",
"action": {
"default_title": "Tabswitcher"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "tabswitcher@oddsquat.org",
"strict_min_version": "110.0"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "F2"
}
}
},
"permissions": [
"tabs",
"sessions",
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}