Whatis

Whatis

Highlights and shows definitions for content added via your team's Whatis bot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whatis",
  "manifest_version": 2,
  "version": "0.3.11",
  "description": "Highlights and shows definitions for content added via your team's Whatis bot",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "webNavigation",
    "notifications",
    "alarms"
  ],
  "browser_action": {
    "default_icon": {
      "192": "icon192.png"
    }
  },
  "icons": {
    "192": "icon192.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src https://whatis-slack-prod.herokuapp.com https://api.getwhatis.com  https://whatis-file-attachments-bcc272c.s3.amazonaws.com",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsOL34G/F+HADipqzyx635YrGk2tzEH7dDfqzCwv2akU2bw708IgdsGA6MVk93J0Z7XYVlRMvl/9RFdQntOAo3k2OrbMocsxvm4N6r/tRpAHFiMK43zFNE2kBwXk7fibKzeEGoeSXUM/acfYeiNi2syFDpua2Rda83c7ocOfOszxxa83XUVaw68bLkR4SKZyqNvKstLJoVCI8RpK2xQbN5S0ZJDls2LdkO+stqaWRlhwhI0m3/M8iND1x6GwZsVFUGt7wdo0raLp5l/KKHDPMfclRygpvH+k2u8Er52Sbbp3h3Ae6v9hx11SIQAMMmleufAs1rmQJyTuAzPvV2MGaGwIDAQAB",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "sidebarPageContainer.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.woff",
    "*.woff2",
    "*.png",
    "*.svg",
    "*.jpg",
    "*.gif",
    "*.js",
    "*.html",
    "*.css"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.getwhatis.com/*"
    ]
  },
  "commands": {
    "sidebar-toggle-open": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Open or close extension sidebar."
    }
  }
}