Follox - Export Medium Followers to CSV

Follox - Export Medium Followers to CSV

One Click Solution to Export Medium Followers To CSV

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Follox - Export Medium Followers to CSV",
  "short_name": "Follox",
  "description": "One Click Solution to Export Medium Followers To CSV",
  "version": "1.0.3",
  "background": {
    "persistent": false,
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "icons": {
    "128": "Follox128Icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://medium.com/@*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "Follox128Icon.png",
    "default_title": "Export Medium Followers"
  },
  "permissions": [
    "activeTab"
  ]
}