HybridTV Dev Environment

HybridTV Dev Environment

Polyfill to add basic HbbTV functionality to a browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Polyfill to add basic HbbTV functionality to a browser.",
  "version": "0.0.4",
  "name": "HybridTV Dev Environment",
  "options_page": "options.html",
  "background": {
    "persistent": true,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "icons": {
    "16": "TV_active_16.png",
    "48": "TV_active_48.png",
    "128": "TV_active_128.png"
  },
  "browser_action": {
    "default_icon": "TV_inactive_128.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "hbbtv_polyfill.js",
    "hbb-extension-content-ui.css",
    "remote-control.css",
    "in-page-extensions.js",
    "plugin-extensions.js",
    "TiresiasPCfont.ttf"
  ],
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}