Set Search Time

Set Search Time

Always Google search using time filtering to produce recent results. Options: past hour, 24 hours, week, month, and year.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Set Search Time",
  "short_name": "Search Time",
  "version": "1.0.0",
  "description": "Always Google search using time filtering to produce recent results.  Options: past hour, 24 hours, week, month, and year.",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "Set Search Time Options",
    "default_popup": "options.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "setsearchtime.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}