Google Search Quick Custom Ranges

Grants ability to add additional quick date range searches with google search.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Search Quick Custom Ranges",
  "version": "1.0.3",
  "description": "Grants ability to add additional quick date range searches with google search.",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*"
      ],
      "js": [
        "searchRanges.js"
      ]
    }
  ]
}