Examine source code of Sidebar Tab Groups

Inspect and view changes in Sidebar Tab Groups source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Sidebar Tab Groups",
  "version": "1.1",
  "description": "A custom tab management extension in the sidebar",
  "permissions": [
    "tabs",
    "tabHide",
    "storage",
    "contextMenus",
    "downloads"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_title": "Click to open popup"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5aa616c2-a41e-4064-bc9b-badf58553d14}",
      "strict_min_version": "102.0"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "type": "module",
    "persistent": true
  },
  "sidebar_action": {
    "default_panel": "html/sidebar.html",
    "default_title": "Sidebar Tab Groups"
  },
  "web_accessible_resources": [
    "js/editGroup.js",
    "js/popup.js",
    "js/settings.js",
    "js/sidebar.js",
    "js/data/database.js",
    "js/data/databaseStorage.js",
    "js/data/localStorage.js",
    "js/service/events.js",
    "js/service/styleUtils.js",
    "js/service/utils.js",
    "html/editGroup.html",
    "html/settings.html"
  ]
}