Examine source code of TeamData

Inspect and view changes in TeamData 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TeamData",
  "description": "TeamData, by Personal, helps companies, employees and teams of any kind manage the information they need to get work done.",
  "version": "2.2.5",
  "author": "Personal Inc",
  "icons": {
    "35": "icons/icon_35.png",
    "38": "icons/icon_38.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "webNavigation",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "extension.js"
  ],
  "browser_action": {
    "default_title": "TeamData",
    "default_icon": {
      "19": "icons/icon_19.png",
      "38": "icons/icon_38.png",
      "48": "icons/icon_48.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "js": [
        "content.js"
      ]
    }
  ]
}