include.ai Sidebar

include.ai Sidebar

Superpowers for the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "include.ai Sidebar",
  "short_name": "i.a Sidebar",
  "description": "Superpowers for the web.",
  "version": "0.1.0.8",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "activeTab",
    "debugger",
    "cookies",
    "<all_urls>"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "omnibox": {
    "keyword": "ia"
  },
  "externally_connectable": {
    "matches": [
      "https://localhost/*",
      "https://ally.include.ai/*",
      "http://localhost/*",
      "https://hq.include.ai/*",
      "https://allysidebar.include.ai/*",
      "https://sidebar.include.ai/*"
    ]
  },
  "browser_action": {
    "default_icon": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "allyParent.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*/*.pdf*"
      ],
      "js": [
        "content.js",
        "ally.js",
        "allysidebar.js"
      ],
      "css": [
        "allyParent.css",
        "allySidebarParent.css",
        "sharedStyles.css",
        "cleanslate.css"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "toggle-ally-launcher-k": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "windows": "Ctrl+Shift+K",
        "mac": "Ctrl+Shift+K"
      },
      "description": "Toggle Sidebar With K"
    },
    "toggle-ally-launcher-shift": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "windows": "Ctrl+Shift+Space",
        "mac": "Ctrl+Shift+Space"
      },
      "description": "Toggle Sidebar With Space"
    }
  }
}