ScreenShot For Basecamp 2

ScreenShot For Basecamp 2

This extension allows you to take screenshots and paste them into a basecamp conversation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScreenShot For Basecamp 2",
  "description": "This extension allows you to take screenshots and paste them into a basecamp conversation",
  "version": "1.2",
  "icons": {
    "128": "128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Basecamp Screenshot"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "clipboardRead",
    "clipboardWrite",
    "contentSettings",
    "declarativeContent",
    "storage",
    "https://*.basecamp.com/*/projects/*/todos/*"
  ]
}