Project Plan 365 Assistant

Project Plan 365 Assistant

Integrate simple ChatGPT planning with MS Project. Use Project Plan 365 to view, create and share Gantt Charts or download as MPP.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Project Plan 365 Assistant",
  "description": "Integrate simple ChatGPT planning with MS Project. Use Project Plan 365 to view, create and share Gantt Charts or download as MPP.",
  "icons": {
    "16": "icon_16x16.png",
    "32": "icon_32x32.png",
    "128": "icon_128x128.png"
  },
  "version": "1.2",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon_16x16.png",
      "32": "icon_32x32.png",
      "128": "icon_128x128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "all_frames": true,
      "js": [
        "shared.js",
        "main.js"
      ]
    }
  ],
  "host_permissions": [
    "https://online.projectplan365.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}