Examine source code of Seismic

Inspect and view changes in Seismic source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Seismic",
  "description": "Find documents, notes and wikis faster with Seismic Knowledge.",
  "version": "1.0.20",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/polyfill.js"
      ]
    }
  ],
  "action": {},
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "externally_connectable": {
    "matches": [
      "https://extension-staging.obie.ai/*",
      "https://extension.obie.ai/*",
      "https://obie.ngrok.io/*",
      "https://*.obie.ai/*",
      "https://*.staging.obie.ai/*",
      "https://*.knowledge.lessonly.com/*",
      "https://*.staging.knowledge.lessonly.com/*",
      "https://*.knowledge-qa.seismic-dev.com/*",
      "https://*.knowledge.seismic.com/*"
    ]
  },
  "commands": {
    "open": {
      "suggested_key": {
        "default": "Alt+Shift+O",
        "windows": "Alt+Shift+O",
        "mac": "Command+Shift+O",
        "linux": "Alt+Shift+O"
      },
      "description": "Open Extension"
    }
  },
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "history",
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*.staging.obie.ai/*",
    "https://*.obie.ai/*",
    "https://*.staging.knowledge.lessonly.com/*",
    "https://*.knowledge.lessonly.com/*",
    "https://*.knowledge-qa.seismic-dev.com/*",
    "https://*.knowledge.seismic.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}