Controls for Instagram Videos

Controls for Instagram Videos

Adds video playback controls to Instagram videos embedded in web pages (seek bar, volume, play/pause, download video button).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Chris Rehfeld [email protected]",
  "homepage_url": "http://rehfeld.us/browser-extensions/controls-for-instagram",
  "name": "Controls for Instagram Videos",
  "short_name": "Ctrls4Insta",
  "description": "Adds video playback controls to Instagram videos embedded in web pages (seek bar, volume, play/pause, download video button).",
  "version": "1.33",
  "minimum_chrome_version": "88",
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "all_frames": true,
      "js": [
        "Stackframe.js",
        "ErrorStackParser.js",
        "ic-util.js",
        "InstagramVideoControls.js",
        "ic-content-script-init.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "ic-background.js"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/play-16x16.png",
    "48": "icons/play-48x48.png",
    "128": "icons/play-128x128.png"
  },
  "commands": {
    "volume-increase": {
      "suggested_key": {
        "default": "Ctrl+Up",
        "mac": "Command+Up"
      },
      "description": "Increase video volume"
    },
    "volume-decrease": {
      "suggested_key": {
        "default": "Ctrl+Down",
        "mac": "Command+Down"
      },
      "description": "Decrease video volume"
    },
    "playback-speed-increase": {
      "suggested_key": {
        "default": "Alt+Up",
        "mac": "Alt+Up"
      },
      "description": "Increase video playback speed"
    },
    "playback-speed-decrease": {
      "suggested_key": {
        "default": "Alt+Down",
        "mac": "Alt+Down"
      },
      "description": "Decrease video playback speed"
    },
    "playback-speed-reset": {
      "description": "Reset video playback speed to 1.0"
    }
  }
}