Video Transformer

Zoom, stretch, reposition, rotate, and flip video and images using hotkeys.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.1",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "incognito": "split",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "24": "images/icon_24.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "transforms.js",
        "hotkeys.js",
        "main.js",
        "extra_fixes.js"
      ],
      "css": [
        "extra_fixes.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "commands": {
    "reload": {
      "description": "__MSG_commands_reload__"
    }
  }
}