1
0
Fork 0
tab-counter/manifest.firefox.json
Daniel Baumann 5988d8b9b6
Adding upstream version 0.4.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-31 14:47:36 +02:00

46 lines
1.1 KiB
JSON

{
"name": "Tab Counter",
"short_name": "Tab Counter",
"author": "DaAwesomeP",
"developer": {
"name": "DaAwesomeP",
"url": "https://addons.mozilla.org/en-US/firefox/user/DaAwesomeP/"
},
"version": "0.4.1",
"description": "A button badge that shows the number of tabs open in a window",
"homepage_url": "https://github.com/DaAwesomeP/tab-counter",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "tab-counter@daawesomep.addons.mozilla.org",
"strict_min_version": "52.0"
}
},
"icons": {
"1": "icons/tabcounter-logo.plain.min.svg"
},
"permissions": [
"storage"
],
"browser_action": {
"browser_style": true,
"default_area": "tabstrip",
"default_icon": "icons/tabcounter.plain.min.svg",
"theme_icons": [{
"dark": "icons/tabcounter-gray10.plain.min.svg",
"light": "icons/tabcounter-gray90.plain.min.svg",
"size": 1
}],
"default_popup": "dist/popup.html",
"default_title": "Tab Counter"
},
"options_ui": {
"page": "dist/options.html"
},
"background": {
"scripts": [
"dist/background.js"
],
"persistent": true
}
}