RecipeCleaner

RecipeCleaner

Remove the clutter, ads, popups and paragraphs and paragraphs of filler text from recipe sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "RecipeCleaner",
  "version": "2.3.4",
  "description": "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.",
  "icons": {
    "32": "icons/icon-detected-32.png",
    "48": "icons/icon-detected-48.png",
    "96": "icons/icon-detected-96.png"
  },
  "page_action": {
    "browser_style": true,
    "default_icon": "icons/icon-detected-96.png",
    "default_title": "Show me the recipe!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "page": "html/background.html"
  },
  "permissions": [
    "*://*/*",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "html/*.html",
    "js/*.js",
    "css/*.css"
  ],
  "content_security_policy": "script-src 'self' 'sha256-58XC9A7vCVf4d/kGzBMGAy2dBerh5XDULiZ80gbeBP0='; object-src 'self';",
  "browser_specific_settings": {
    "gecko": {
      "id": "{52365c5c-5320-45c0-a736-2b1dec5e675b}"
    }
  }
}