Calorie Hider

Calorie Hider

Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Calorie Hider",
  "description": "Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'",
  "version": "1.2.2",
  "author": "Mayze",
  "icons": {
    "16": "CHicon16.png",
    "48": "CHicon48.png",
    "128": "CHicon128.png"
  },
  "action": {
    "default_icon": "CHicon128.png",
    "default_title": "Calorie Hider",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.js",
        "jquery.min.js"
      ],
      "exclude_globs": [
        "*options*"
      ]
    }
  ]
}