Web for Instagram with Direct

Web for Instagram with Direct

It's a set of most useful features for Instagram: direct messages, upload stories and IGTV, screenshot capture, and much more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/64.png",
    "default_title": "__MSG_name__"
  },
  "background": {
    "scripts": [
      "libs/jquery.min.js",
      "scripts/storage.js",
      "scripts/bg.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "scripts/ua.js"
      ],
      "all_frames": true,
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "js": [
        "scripts/contentScripts/rate.js"
      ],
      "css": [
        "styles/rate.css"
      ],
      "all_frames": true,
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "css": [
        "styles/content.css"
      ],
      "js": [
        "libs/jquery.min.js",
        "scripts/storage.js",
        "scripts/contentScripts/content.js"
      ],
      "all_frames": true,
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/contentScripts/instaLinkListener.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "options_page": "options/options.html",
  "web_accessible_resources": [
    "icons/*",
    "styles/*"
  ],
  "version": "1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}