ChemDraw Web Clipboard

ChemDraw Web Clipboard

Use the ChemDraw extension to copy/paste chemical structures displayed by ChemDraw in web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChemDraw Web Clipboard",
  "version": "23.0.0.205",
  "manifest_version": 2,
  "description": "Use the ChemDraw extension to copy/paste chemical structures displayed by ChemDraw in web pages.",
  "icons": {
    "16": "icons/chemdraw-16.png",
    "48": "icons/chemdraw-48.png",
    "128": "icons/chemdraw-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "page.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "permissions": [
    "nativeMessaging"
  ]
}