Anchor Floating Bars

Anchor Floating Bars

Right click on a floating navigation bar to move it out of the way of the content when you scroll down. Doesn't work on all pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anchor Floating Bars",
  "description": "Right click on a floating navigation bar to move it out of the way of the content when you scroll down. Doesn't work on all pages.",
  "version": "1.0.2",
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://ajax.googleapis.com/"
  ],
  "icons": {
    "16": "img/anchor16.png",
    "19": "img/anchor19.png",
    "48": "img/anchor48.png",
    "128": "img/anchor128.png"
  },
  "background": {
    "scripts": [
      "js/rightclick.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/page.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}