View Recipes & Custom Web Search

View Recipes & Custom Web Search

Add View Recipes & Custom Web Search extension then click the icon on your toolbar to access Recipe Search plus Yahoo Web Search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "name": "View Recipes & Custom Web Search",
  "short_name": "View Recipes",
  "icons": {
    "128": "icons/coloured_icon.png"
  },
  "description": "Add View Recipes & Custom Web Search extension then click the icon on your toolbar to access Recipe Search plus Yahoo Web Search.",
  "manifest_version": 2,
  "version": "1.7",
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "128": "icons/icon128.png"
    },
    "default_title": "View Recipes & Custom Web Search"
  },
  "permissions": [
    "*://allbestrecipes.net/*",
    "tabs",
    "search"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://allbestrecipes.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.json"
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "web search by Yahoo",
      "keyword": "View Recipes",
      "favicon_url": "icons/icon_1.png",
      "search_url": "https://search.yahoo.com/yhs/search?hsimp=yhs-076&hspart=infospace&type=ud-c-us--s-p-ix55wfu6--exp-none--subid-fk6j226i&p={searchTerms}",
      "suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
      "is_default": true
    }
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}