Back To Search

Back To Search

Quickly get back to your google search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Back To Search",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Quickly get back to your google search",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webNavigation",
    "tabs"
  ],
  "commands": {
    "back-to-google": {
      "suggested_key": {
        "default": "Alt+Shift+Left"
      },
      "description": "Go to the last google search in a tab's history"
    }
  }
}