Sift Food Labels

Sift Food Labels

Sift Food Labels breaks down complicated ingredient labels so you know what’s in your food! Our browser extension integrates into…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sift Food Labels",
  "version": "1.2.6",
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "helpers/barcoder.js",
      "helpers/cache.js",
      "helpers/utils.js",
      "helpers/services/products.js",
      "helpers/dom-helper/dom-helper.js",
      "helpers/dom-helper/amazon-dom-helper.js",
      "helpers/dom-helper/kroger-dom-helper.js",
      "helpers/dom-helper/walmart-dom-helper.js",
      "helpers/env.js",
      "config/data/constants.js",
      "config/data/master-data.js",
      "config/services/services.js",
      "config/settings/env-local.js",
      "config/settings/env-production.js",
      "config/settings/globals.js",
      "config/index.js",
      "app/background.js"
    ]
  },
  "icons": {
    "16": "icons/icon16_prod.png",
    "48": "icons/icon48_prod.png",
    "128": "icons/icon128_prod.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16_disabled.png",
      "48": "icons/icon48_disabled.png",
      "128": "icons/icon128_disabled.png"
    },
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.amazon.com/*",
        "https://www.amazon.com/*",
        "https://smile.amazon.com/*",
        "https://www.siftfoodlabels.com/*",
        "https://www.kroger.com/*",
        "https://www.qfc.com/*",
        "https://www.ralphs.com/*",
        "https://www.fredmeyer.com/*",
        "https://www.walmart.com/*"
      ],
      "js": [
        "crawler/amazon/amazon-product-details-dom-api.js",
        "crawler/amazon/amazon-product-details-rest-api.js",
        "crawler/amazon/amazon-product-search-dom-api.js",
        "crawler/amazon/amazon-product-search-rest-api.js",
        "crawler/kroger/kroger-product-details-dom-api.js",
        "crawler/kroger/kroger-product-details-rest-api.js",
        "crawler/kroger/kroger-product-search-dom-api.js",
        "crawler/kroger/kroger-product-search-rest-api.js",
        "crawler/walmart/walmart-product-details-dom-api.js",
        "crawler/walmart/walmart-product-details-rest-api.js",
        "crawler/walmart/walmart-product-search-dom-api.js",
        "crawler/walmart/walmart-product-search-rest-api.js",
        "crawler/product-details-dom-api.js",
        "crawler/product-details-rest-api.js",
        "crawler/product-search-dom-api.js",
        "crawler/product-search-rest-api.js",
        "helpers/cache.js",
        "helpers/diets-identifiers.js",
        "helpers/utils.js",
        "helpers/barcoder.js",
        "helpers/services/products.js",
        "helpers/dom-helper/dom-helper.js",
        "helpers/dom-helper/amazon-dom-helper.js",
        "helpers/dom-helper/kroger-dom-helper.js",
        "helpers/dom-helper/walmart-dom-helper.js",
        "helpers/env.js",
        "config/data/constants.js",
        "config/data/master-data.js",
        "config/services/services.js",
        "config/settings/env-local.js",
        "config/settings/env-production.js",
        "config/settings/globals.js",
        "config/index.js",
        "app/layover-icons.js",
        "app/toggle-icon.js",
        "app/content.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "813217867649-orr6aubt94mm6bsjhel9nn93rksguctd.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU=' https://ssl.google-analytics.com https://www.google-analytics.com https://js.stripe.com '; object-src 'self'",
  "permissions": [
    "identity",
    "tabs",
    "https://js.stripe.com/*",
    "https://sift-security-svc.azurewebsites.net/*",
    "https://sift-diet-svc.azurewebsites.net/*",
    "https://sift-marketing-svc.azurewebsites.net/*",
    "https://sift-prod-westus.azurewebsites.net/api/v1/*",
    "https://*.facebook.com/*",
    "https://*.amazon.com/*",
    "https://*.kroger.com/*",
    "https://*.walmart.com/*"
  ]
}