YS Loopy (Yeezy Supply Monitor)

YS Loopy (Yeezy Supply Monitor)

An assistant for yeezysupply.com. It monitors for the latest drop and can assist in a speedy checkout.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YS Loopy (Yeezy Supply Monitor)",
  "version": "0.5.0.0",
  "version_name": "0.5.0.0 blush",
  "manifest_version": 2,
  "description": "An assistant for yeezysupply.com. It monitors for the latest drop and can assist in a speedy checkout.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "homepage_url": "http://wordoncode.com",
  "author": "@wordoncode",
  "short_name": "YSLoopy",
  "content_scripts": [
    {
      "matches": [
        "https://yeezysupply.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "actions.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "YS Loopy (Yeezy Supply Monitor)"
  },
  "permissions": [
    "https://yeezysupply.com/*",
    "tabs",
    "storage"
  ]
}