Examine source code of Set Aside Tabs

Inspect and view changes in Set Aside Tabs 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
{
  "browser_specific_settings": {
    "gecko": {
      "id": "set-aside-tabs@kuangkuang",
      "strict_min_version": "59.0"
    }
  },
  "manifest_version": 2,
  "name": "Set Aside Tabs",
  "version": "2.0.0",
  "description": "A firefox addon that allows to set aside tabs and restore them later.",
  "homepage_url": "https://github.com/kun-fang/set-aside-tabs",
  "icons": {
    "48": "set-aside-icon-48.png",
    "96": "set-aside-icon-96.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "set-aside-icon-48.png",
    "default_title": "Set Aside Tabs"
  },
  "commands": {
    "set-aside-open-tabs": {
      "suggested_key": {
        "default": "Alt+Shift+U",
        "linux": "Ctrl+Shift+U"
      },
      "description": "Set aside all the open tabs"
    }
  },
  "permissions": [
    "<all_urls>",
    "sessions",
    "tabs",
    "storage",
    "management"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' data:"
}