Instension

Instension

Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Instension",
  "version": "1.1.0",
  "description": "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.",
  "icons": {
    "16": "icons/instension_16.png",
    "32": "icons/instension_32.png",
    "64": "icons/instension_64.png",
    "128": "icons/instension_128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "scripts/element_finder.js",
        "scripts/content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "downloads"
  ]
}