Browser Video Tuner

Browser Video Tuner

Changing size and aspect ratio of the video in the browser. 1. Start the video. 2. Click on the extension icon. 3. Expand the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Browser Video Tuner",
  "description": "",
  "version": "1.5",
  "icons": {
    "16": "i/icon16.png",
    "48": "i/icon48.png",
    "128": "i/icon128.png"
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "19": "i/icon19.png",
      "38": "i/icon38.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "index.html",
  "content_security_policy": "script-src 'self'; object-src 'self'"
}