Mealime Recipe Collector

Mealime Recipe Collector

Collect recipes from your favorite recipe websites with Mealime

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mealime Recipe Collector",
  "description": "Collect recipes from your favorite recipe websites with Mealime",
  "version": "1.0.6",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "web_accessible_resources": [
    "fonts/*.woff2",
    "css/*.css",
    "popup.html"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "images/icon-disabled.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ]
}