1
0
Fork 0

Adding upstream version 0.4.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-31 14:47:36 +02:00
parent 956119c6fd
commit 5988d8b9b6
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
47 changed files with 8483 additions and 0 deletions

49
manifest.opera.json Normal file
View file

@ -0,0 +1,49 @@
{
"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
}
}