Breadcrumb Navigator

Breadcrumb Navigator

This extension allows you to navigate any URL in a breadcrumb-like way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 2,
  "version": "1.1.2",
  "description": "__MSG_extDesc__",
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "default_locale": "en_US",
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_extTitle__",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "amazon.js",
        "content_script.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}