Media Caster

Media Caster

Find videos on web sites and download or play them on Chromecast device. Put videos in the favorites tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "onigetoc",
  "browser_action": {
    "default_icon": "img/mediacast4.png",
    "default_popup": "popup.html"
  },
  "description": "Find videos on web sites and download or play them on Chromecast device. Put videos in the favorites tab",
  "icons": {
    "16": "img/mediacast4.png",
    "48": "img/mediacast4.png",
    "128": "img/mediacast4.png"
  },
  "content_security_policy": "script-src 'self' chrome-extension://pkedcjkdefgpdelpbcmbmeomcjbeemfm/ chrome-extension-resource: https://www.gstatic.com; object-src 'self'",
  "permissions": [
    "webNavigation",
    "https://*/*",
    "http://*/*",
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/bg.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/scripts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/scripts.js"
  ],
  "manifest_version": 2,
  "name": "Media Caster",
  "short_name": "Media Caster",
  "options_page": "options.html",
  "version": "3"
}