Native FLV Playback

Native FLV Playback

Allow the browser to play FLV video urls (flv) 'natively'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Native FLV Playback",
  "version": "0.12.4",
  "description": "Allow the browser to play FLV video urls (flv) 'natively'",
  "manifest_version": 2,
  "icons": {
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "event.js",
      "global.js"
    ]
  },
  "content_security_policy": "script-src 'self' blob:; object-src 'self'",
  "permissions": [
    "tabs",
    "*://*/*.flv*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "Disable",
    "default_icon": "img/icon128.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "*.js",
    "*.html"
  ],
  "omnibox": {
    "keyword": "flv"
  }
}