Fast Follows

Fast Follows

Boost your social media engagement with automation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fast Follows",
  "description": "Boost your social media engagement with automation.",
  "version": "1.0.0",
  "icons": {
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "notifications",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "constants/contextStrings.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://*.twitter.com/*",
        "*://*.soundcloud.com/*",
        "*://*.medium.com/*",
        "*://*.quora.com/*",
        "*://*.pinterest.com/*",
        "*://*.linkedin.com/*"
      ],
      "js": [
        "constants/domainList.js",
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "Automate Follows",
    "default_icon": "images/icon-128.png",
    "default_popup": "popup.html"
  }
}