Insta Video Controls

Insta Video Controls

Show Video Controls on Instagram.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Insta Video Controls",
  "version": "0.1.0",
  "description": "Show Video Controls on Instagram.com",
  "homepage_url": "https://github.com/giuseppeg/insta-video-controls",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://instagram.com/*",
        "https://*.instagram.com/*"
      ],
      "js": [
        "index.user.js"
      ]
    }
  ]
}