Document Library Automation

Document Library Automation

Automate tasks in the Conexed Document Libary

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Document Library Automation",
  "version": "2.2",
  "description": "Automate tasks in the Conexed Document Libary",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "Extension Icon.png"
  },
  "background": {
    "scripts": [
      "document library background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.craniumcafe.com/document-library"
      ],
      "js": [
        "document library content.js"
      ]
    },
    {
      "matches": [
        "https://*.craniumcafe.com/*"
      ],
      "all_frames": true,
      "js": [
        "conexed whiteboard paste workaround.js"
      ]
    }
  ]
}