Gluten Free Extention

Gluten Free Extention

Browse Walmart.com with Gluten-Free in mind!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gluten Free Extention",
  "description": "Browse Walmart.com with Gluten-Free in mind!",
  "version": "1.0",
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "128": "images/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://walmart.com/*",
        "*://www.walmart.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}