Daily Recipes

Daily Recipes

Find Delicious & Easy Recipes Fast

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Daily Recipes",
  "description": "Find Delicious & Easy Recipes Fast",
  "version": "1.4",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon_16.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_title": "Daily Recipes"
  },
  "web_accessible_resources": [
    "images/*",
    "search.html"
  ],
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "search.html"
  },
  "externally_connectable": {
    "matches": [
      "*://*.searchtab.tools/*"
    ]
  },
  "chrome_settings_overrides": {
    "homepage": "https://searchtab.tools/ext/recipes/",
    "startup_pages": [
      "https://searchtab.tools/ext/recipes/"
    ]
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}