Video Plus

Video Plus

Browser extension that increases the display size of videos by removing unnecessary padding bars

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video Plus",
  "short_name": "Video Plus",
  "version": "0.1.6.1",
  "author": "Niklas Gollenstede",
  "description": "Browser extension that increases the display size of videos by removing unnecessary padding bars",
  "icons": {
    "64": "/icon.png"
  },
  "minimum_chrome_version": "55.0.0",
  "applications": {
    "gecko": {
      "id": "@video-plus",
      "strict_min_version": "59.0"
    }
  },
  "permissions": [
    "storage",
    "notifications",
    "webNavigation",
    "tabs",
    "<all_urls>"
  ],
  "optional_permissions": [],
  "web_accessible_resources": [],
  "incognito": "spanning",
  "background": {
    "page": "node_modules/web-ext-utils/loader/_background.html",
    "persistent": false
  },
  "options_ui": {
    "page": "VideoPlus.html#options",
    "open_in_tab": false
  },
  "browser_action": {
    "default_icon": {
      "64": "/icon.png"
    },
    "default_title": "Toggle Video Plus"
  }
}