Tab Home

Tab Home

Home button for tabs. Takes you back to your tab's start URL. Ideal for your pinned tabs & Chrome apps as well normal browser tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Home",
  "description": "Home button for tabs. Takes you back to your tab's start URL. Ideal for your pinned tabs & Chrome apps as well normal browser tabs.",
  "version": "1.3.4",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "history",
    "contextMenus"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "button19.png",
      "38": "button38.png"
    }
  },
  "commands": {
    "commandGoTabHome": {
      "suggested_key": {
        "default": "Ctrl+Shift+G"
      },
      "description": "Go to Tab Home"
    },
    "commandSetTabHome": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Set Tab Home"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}