Instagram Image Right Click

Instagram Image Right Click

A tool for open image from Instagram.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Instagram Image Right Click",
  "version": "1.0",
  "description": "A tool for open image from Instagram.",
  "permissions": [
    "storage",
    "declarativeContent",
    "contextMenus",
    "https://www.instagram.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.instagram.com/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "64": "logo64.png"
  },
  "manifest_version": 2
}