Asana Paste

Asana Paste

Enhance Asana by allowing images to be pasted from clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Asana Paste",
  "description": "Enhance Asana by allowing images to be pasted from clipboard",
  "short_name": "Asana Paste",
  "version": "1.0.4",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js.js"
      ],
      "matches": [
        "https://app.asana.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "https://app.asana.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "paste.js"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "48": "/icons/48x48.png",
    "96": "/icons/96x96.png",
    "128": "/icons/128x128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "/icons/page_action/19x19.png",
      "38": "/icons/page_action/38x38.png"
    },
    "default_title": "Asana Paste"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}