GanttWork

GanttWork

Gantt charts and scheduling within Basecamp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "browser-polyfill.min.js",
        "content.js",
        "js/jquery.js",
        "js/jquery-ui.min.js",
        "js/profiles/mutation_observer.js",
        "js/profiles/create_iframe.js"
      ],
      "matches": [
        "https://3.basecamp.com/*"
      ],
      "all_frames": true
    }
  ],
  "short_name": "GanttWork",
  "name": "GanttWork",
  "version": "2.3.3",
  "manifest_version": 2,
  "description": "Gantt charts and scheduling within Basecamp",
  "icons": {
    "48": "images/logo_48.png"
  },
  "permissions": [
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": "images/logo_48.png",
    "default_popup": "html/popup.html"
  },
  "web_accessible_resources": [
    "html/*",
    "html_js/*"
  ]
}