Ultimedia Premium Videos

Ultimedia Premium Videos

The Ultimedia Plugin allows publishers and bloggers to search, add, edit and monetize Premium Videos on their website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.5",
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "cadreplayer.png",
    "48": "48px.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "http://127.0.0.1/*",
    "http://localhost/*"
  ],
  "browser_action": {
    "default_icon": "cadreplayer.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}