Super Me

Super Me

Supreme SecKill

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Super Me",
  "description": "Supreme SecKill",
  "version": "0.7.0",
  "background": {
    "script": "background.js"
  },
  "browser_action": {
    "default_title": "Super Me",
    "default_popup": "index.html?popup=true",
    "default_icon": "assets/img/icon.png"
  },
  "icons": {
    "16": "assets/img/icon16.png",
    "48": "assets/img/icon48.png",
    "128": "assets/img/icon128.png"
  },
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "options_page": "index.html",
  "permissions": [
    "storage",
    "background",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "*://*.supremenewyork.com/*",
    "*://*.yysports.com/*",
    "downloads",
    "https://www.googleapis.com/"
  ],
  "oauth2": {
    "client_id": "1017987636028-bkjp3m4issoe71j8phj3r9mdgt0dhvi0.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.supremenewyork.com/*",
        "*://*.yysports.com/*"
      ],
      "js": [
        "extension.js"
      ]
    }
  ]
}