DataLink™ for TriCaster™

DataLink™ for TriCaster™

Allows users to send selected text and image data from webpages to NewTek TriCaster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DataLink™ for TriCaster™",
  "short_name": "DataLink™ for TriCaster™",
  "description": "Allows users to send selected text and image data from webpages to NewTek TriCaster.",
  "version": "0.1.0.8",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icon.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "login.html",
    "login.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ]
    }
  ],
  "commands": {
    "capture_page": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Send a 'toggle-feature' event to the extension"
    }
  },
  "permissions": [
    "<all_urls>",
    "contextMenus"
  ]
}