Costbell

Costbell

Chrome extension to help you shop so you can sleep

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Costbell",
  "description": "Chrome extension to help you shop so you can sleep",
  "version": "2.9.5",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "/lib/firebase-app.js",
      "/lib/firebase-firestore.js",
      "/lib/firebase-remote-config.js",
      "/configs/firebase_init.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "activeTab",
    "notifications"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/costbell_logo.png",
      "32": "/images/costbell_logo.png",
      "48": "/images/costbell_logo.png",
      "128": "/images/costbell_logo.png",
      "512": "/images/costbell_logo.png"
    }
  },
  "icons": {
    "16": "/images/costbell_logo.png",
    "32": "/images/costbell_logo.png",
    "48": "/images/costbell_logo.png",
    "128": "/images/costbell_logo.png",
    "512": "/images/costbell_logo.png"
  },
  "options_page": "/options/options.html",
  "author": "Costbell",
  "content_scripts": [
    {
      "matches": [
        "https://*.target.com/*"
      ],
      "css": [
        "/styles/content.css"
      ],
      "all_frames": true,
      "js": [
        "/lib/jquery.js",
        "/lib/sendkeys.js",
        "/utils/utils.js",
        "/domains/target.js"
      ]
    },
    {
      "matches": [
        "https://*.bestbuy.com/*"
      ],
      "css": [
        "/styles/content.css"
      ],
      "all_frames": true,
      "js": [
        "/lib/jquery.js",
        "/lib/sendkeys.js",
        "/lib/keysim.js",
        "/utils/utils.js",
        "/domains/bestbuy.js"
      ]
    },
    {
      "matches": [
        "https://*.xbox.com/*",
        "https://*.microsoft.com/*",
        "https://*.live.com/*"
      ],
      "css": [
        "/styles/content.css"
      ],
      "all_frames": true,
      "js": [
        "/lib/jquery.js",
        "/lib/sendkeys.js",
        "/utils/utils.js",
        "/domains/microsoft.js"
      ]
    },
    {
      "matches": [
        "https://*.gamestop.com/*"
      ],
      "css": [
        "/styles/content.css"
      ],
      "all_frames": true,
      "js": [
        "/lib/jquery.js",
        "/lib/sendkeys.js",
        "/utils/utils.js",
        "/domains/gamestop.js"
      ]
    },
    {
      "matches": [
        "https://*.amazon.ca/*",
        "https://*.amazon.ca/*",
        "https://*.amazon.de/*",
        "https://*.amazon.fr/*"
      ],
      "css": [
        "/styles/content.css"
      ],
      "all_frames": true,
      "js": [
        "/lib/jquery.js",
        "/utils/utils.js",
        "/domains/amazon.js"
      ]
    }
  ]
}