Check Cosmetic Ingredients | Curious Chloride

Check Cosmetic Ingredients | Curious Chloride

Avoid harmful chemicals in your products with this Ingredient Scanner. Curious Chloride helps you sort out clean beauty.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Check Cosmetic Ingredients | Curious Chloride",
  "description": "Avoid harmful chemicals in your products with this Ingredient Scanner. Curious Chloride helps you sort out clean beauty.",
  "version": "1.04",
  "icons": {
    "19": "img/19.png",
    "48": "img/48.png",
    "100": "img/100.png",
    "128": "img/128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_icon": "img/19.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "scan-page": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "windows": "Alt+Shift+C",
        "mac": "Alt+Shift+C"
      },
      "description": "Scan the page for harmful chemicals in your products"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./libs/popper.js",
        "./libs/tippy.js",
        "./libs/toastify.js",
        "./libs/lodash.js",
        "./libs/arrive.min.js",
        "./libs/findAndReplaceDOMText.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ext_substances.csv",
        "ext_categories.csv",
        "ext_belongs_to.csv"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}