Medium Auto Follow Bot

Medium Auto Follow Bot

A Bot to Follow and Unfollow Medium Users

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Medium Auto Follow Bot",
  "version": "1.13",
  "description": "A Bot to Follow and Unfollow Medium Users",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "third-party/jquery.min.js",
        "js/utils/constants.js",
        "js/utils/messaging.js",
        "js/utils/content_script_analytics.js",
        "js/utils/prototypeOverrides.js",
        "js/utils/slowIterate.js",
        "js/utils/storage.js",
        "js/utils/actions.js",
        "js/following.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "third-party/jquery.min.js",
        "js/utils/constants.js",
        "js/utils/messaging.js",
        "js/utils/content_script_analytics.js",
        "js/utils/prototypeOverrides.js",
        "js/utils/slowIterate.js",
        "js/utils/storage.js",
        "js/utils/actions.js",
        "js/followers.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/ChromeToolsIcon.png",
      "32": "images/ChromeToolsIcon.png",
      "48": "images/ChromeToolsIcon.png",
      "128": "images/ChromeToolsIcon.png"
    }
  },
  "icons": {
    "16": "images/ChromeToolsIcon.png",
    "32": "images/ChromeToolsIcon.png",
    "48": "images/ChromeToolsIcon.png",
    "128": "images/ChromeToolsIcon.png"
  }
}