AutoIns

AutoIns

This bot will automatically unfollow all of someone's Instagram followers for you. It can also follow for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.0.1",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*.instagram.com/*",
    "https://*.instagram.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "*.*"
  ],
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "http://*.instagram.com/*",
        "https://*.instagram.com/*"
      ],
      "all_frames": false,
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://*.szeasytrust.cn/*"
    ]
  }
}