Tab Origin

Tab Origin

Return to the page from which you opened a tab. Also in Chrome: https://goo.gl/KpB84g

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tab Origin",
  "description": "Return to the page from which you opened this tab.",
  "author": "Peter Elmers",
  "version": "2.0.0",
  "icons": {
    "48": "drawing.png",
    "128": "drawing128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "drawing.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      }
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}