Examine source code of Tab hider

Inspect and view changes in Tab hider 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
{
  "description": "Simple tab hider.",
  "homepage_url": "https://github.com/andymckay/snooze-tabs",
  "manifest_version": 2,
  "name": "Tab hider",
  "permissions": [
    "alarms",
    "menus",
    "notifications",
    "storage",
    "tabs",
    "tabHide"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "Hidden tabs",
    "default_icon": {
      "128": "off.svg"
    }
  },
  "icons": {
    "128": "off.svg"
  },
  "version": "0.4.5",
  "applications": {
    "gecko": {
      "id": "tab-hider@andym.mozilla.com",
      "strict_min_version": "59.0a1"
    }
  }
}