49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "Tab Counter",
|
|
"short_name": "Tab Counter",
|
|
"author": "DaAwesomeP",
|
|
"developer": {
|
|
"name": "DaAwesomeP",
|
|
"url": "https://daawesomep.github.io/"
|
|
},
|
|
"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,
|
|
"icons": {
|
|
"16": "icons/tabcounter-logo-16.png",
|
|
"32": "icons/tabcounter-logo-32.png",
|
|
"38": "icons/tabcounter-logo-38.png",
|
|
"64": "icons/tabcounter-logo-64.png",
|
|
"96": "icons/tabcounter-logo-96.png",
|
|
"128": "icons/tabcounter-logo-128.png",
|
|
"256": "icons/tabcounter-logo-256.png"
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": {
|
|
"16": "icons/tabcounter-16.png",
|
|
"32": "icons/tabcounter-32.png",
|
|
"38": "icons/tabcounter-38.png",
|
|
"64": "icons/tabcounter-64.png",
|
|
"96": "icons/tabcounter-96.png",
|
|
"128": "icons/tabcounter-128.png",
|
|
"256": "icons/tabcounter-256.png"
|
|
},
|
|
"default_popup": "dist/popup.html",
|
|
"default_title": "Tab Counter"
|
|
},
|
|
"options_ui": {
|
|
"page": "dist/options.html"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"node_modules/webextension-polyfill/dist/browser-polyfill.js",
|
|
"dist/background.js"
|
|
],
|
|
"persistent": true
|
|
}
|
|
}
|