46 lines
1.1 KiB
JSON
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
|
|
}
|
|
}
|