GetOrganized

GetOrganized

Browser extension for GetOrganized product. It enables GO integration with other desktop applications, e.g. with Outlook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "GetOrganized",
  "version": "1.0.0.0",
  "manifest_version": 2,
  "description": "Browser extension for GetOrganized product. It enables GO integration with other desktop applications, e.g. with Outlook.",
  "icons": {
    "16": "img/go16.png",
    "32": "img/go32.png",
    "48": "img/go48.png",
    "128": "img/go128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  }
}