Examine source code of Message Syncer

Inspect and view changes in Message Syncer 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": "Message Syncer",
  "version": "1.0",
  "description": "Sync conversations from different messaging platforms into a single interface.",
  "icons": {
    "32": "icons/logo_32.png",
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "notifications",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "icons/logo_32.png",
      "64": "icons/logo_64.png",
      "128": "icons/logo_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{91b365d7-20a1-4bde-90fb-4b617f8e7351}"
    }
  }
}