Tabs Counter - Number of Browser Opened Tabs

Tabs Counter - Number of Browser Opened Tabs

Count number of opened tabs in web browser current window. Displays tabs count number on the extension/add-on icon in the toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extNameFull__",
  "short_name": "__MSG_extName__",
  "version": "0.1.0",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/icons/logo_16.png",
      "48": "res/icons/logo_48.png",
      "128": "res/icons/logo_128.png"
    }
  },
  "icons": {
    "16": "res/icons/logo_16.png",
    "48": "res/icons/logo_48.png",
    "128": "res/icons/logo_128.png"
  },
  "author": "Oziku Technologies LLC"
}