Omni

Omni

Chrome sidebar with real time information retrieval.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Chrome sidebar with real time information retrieval.",
  "version": "0.1.37",
  "name": "Omni",
  "icons": {
    "16": "favicon16X16.png",
    "48": "favicon32X32.png",
    "128": "favicon128X128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "128": "favicon128X128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "content.styles.css",
    "favicon16X16.png",
    "favicon32X32.png",
    "favicon128X128.png"
  ],
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "storage"
  ],
  "commands": {
    "Mount-Unmount": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+F"
      },
      "description": "Enable Omni on current tab"
    }
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}