Show Miscellaneous Information About Tabs

Show Miscellaneous Information About Tabs

Show miscellaneous information about tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_shortname__",
  "description": "__MSG_extension_description__",
  "version": "1.2024.325.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{edd65362-ea13-4226-bfe9-b4a4b4cdc192}"
    }
  },
  "icons": {
    "96": "lib/info.svg"
  },
  "permissions": [
    "activeTab",
    "menus",
    "tabs",
    "<all_urls>",
    "contextualIdentities",
    "management"
  ],
  "background": {
    "scripts": [
      "tab_stat.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "96": "lib/info.svg"
    },
    "default_title": "__MSG_extension_name__"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "show_tab_status": {
      "suggested_key": {},
      "description": "__MSG_show_tab_status__"
    }
  }
}