Unfollower for Instagram

Unfollower for Instagram

Automatically unfollows the Instagram accounts you specify.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unfollower for Instagram",
  "version": "0.2",
  "author": "Aris Melachroinos",
  "manifest_version": 3,
  "description": "Automatically unfollows the Instagram accounts you specify.",
  "permissions": [
    "storage",
    "scripting",
    "alarms",
    "webRequest",
    "contextMenus"
  ],
  "host_permissions": [
    "https://www.instagram.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "Unfollower for Instagram",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  }
}