Superpowers for Instagram

Superpowers for Instagram

Mass follow, mass unfollow and mass like on Instagram with powerful options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Clemens Teichmann",
  "description": "Mass follow, mass unfollow and mass like on Instagram with powerful options.",
  "manifest_version": 2,
  "name": "Superpowers for Instagram",
  "homepage_url": "https://www.clemensteichmann.com/superpowers-for-instagram",
  "version": "78",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "images/superpowers_for_instagram16.png",
    "48": "images/superpowers_for_instagram48.png",
    "128": "images/superpowers_for_instagram128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ]
}