Medium Stats Grabber

Medium Stats Grabber

This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Medium Stats Grabber",
  "description": "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)",
  "version": "1.6",
  "content_scripts": [
    {
      "matches": [
        "https://medium.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}