Examine source code of Tab Reminderok

Inspect and view changes in Tab Reminderok 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": "Tab Reminder",
  "version": "1.0",
  "description": "Displays a custom reminder each time a new tab is opened to help you maintain good habits.",
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/icon.png"
    }
  },
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{3d0c864e-55e2-4bd2-894c-28fc4a563ea0}"
    }
  }
}