Vend Age Restriction

Vend Age Restriction

This extension will determine a customers age before checkout

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vend Age Restriction",
  "description": "This extension will determine a customers age before checkout",
  "version": "1.5.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Vend Age Restriction",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.vendhq.com/webregister/"
      ],
      "css": [
        "ar_style.css"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "https://*.vendhq.com/webregister/",
    "storage"
  ]
}