Download Food Lion Shopping History

Download Food Lion Shopping History

Chrome extension that downloads shopping history from currently viewed Food Lion page as a 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": "Download Food Lion Shopping History",
  "description": "Chrome extension that downloads shopping history from currently viewed Food Lion page as a CSV",
  "version": "0.0.0.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.foodlion.com/account/shopping-history/"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "foodlion.png",
    "default_title": "Download Food Lion History"
  },
  "permissions": [
    "declarativeContent"
  ]
}