Direct Message for Instagram™

Direct Message for Instagram™

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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/bg-worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/ua.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/rate.css"
      ],
      "js": [
        "js/content-scripts/rate.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/storage.js",
        "js/content-scripts/content.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "https://direct-message.freefinancetools.net/",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "ui/options/options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__"
  }
}