Day to Day Weather & Search

Add the Day to Day Weather and Search extension to get the weather forecast tool by clicking the favicon on the toolbar and get web search results by Yahoo®
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Day to Day Weather & Search",
  "description": "Add the Day to Day Weather and Search extension to get the weather forecast tool by clicking the favicon on the toolbar and get web search results by Yahoo®",
  "version": "0.1.11",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "Day to Day Weather & Search",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "64": "icons/icon64.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "search",
    "cookies",
    "alarms",
    "*://d2dweather.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "consent.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Day to Day Weather & Search",
      "keyword": "weather",
      "search_url": "https://search.d2dweather.com/search?q={searchTerms}",
      "favicon_url": "favicon.ico",
      "is_default": true
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c9a05aed-be3a-4086-9dda-2de87c347880}"
    }
  }
}