Mobius

Mobius

A minimap to easily navigate websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mobius",
  "version": "4",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon-19-grey.png"
  },
  "background": {
    "scripts": [
      "jquery-2.1.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "mobius.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      }
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*/*"
  ]
}