Advanced DM Client for Insta

Advanced DM Client for Insta

Adds super-handy features like: sending photo from any page to DM, downloading photo from DM, copy-paste text, and many more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.1",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "img/icon_16.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__"
  },
  "icons": {
    "128": "img/icon_128.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content_navigator.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "/rules/rule.json"
      }
    ]
  },
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "webRequest",
    "notifications",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.instagram.com/*",
    "*://*/*.jpg*",
    "*://*/*.png*",
    "*://*/*.jpeg*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "img/*",
        "fonts/*",
        "js/navigator_script.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    }
  ]
}