APP For IG DM

APP For IG DM

Convenient app to auto reply customized IG DM when a new follower or a new liker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.4.4",
  "manifest_version": 3,
  "icons": {
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "./app.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content-script-start.js"
      ],
      "css": [],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/bulk-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/logo.png"
    }
  },
  "host_permissions": [
    "*://*.instagram.com/*",
    "*://*.facebook.com/*",
    "*://*.linkedradar.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "cookies",
    "alarms",
    "webRequest",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "resources": [
        "js/ijsource.js",
        "js/bulk-ijsource.js",
        "inject/*"
      ]
    }
  ]
}