Video Transformer

Video Transformer

Zoom, stretch, reposition, rotate, and flip video and images using hotkeys.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.0.1",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "incognito": "spanning",
  "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"
  },
  "browser_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": {
    "scripts": [
      "service_worker.js"
    ]
  },
  "commands": {
    "reload": {
      "description": "__MSG_commands_reload__"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "video@transformer"
    }
  }
}