Examine source code of TypeIn

Inspect and view changes in TypeIn 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": "TypeIn",
  "version": "0.0.1",
  "description": "键入文字即可触达任何功能, 让一切操作变得简单且高效。",
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "icons": {
    "16": "static/img/icon.png",
    "19": "static/img/icon.png",
    "38": "static/img/icon.png",
    "48": "static/img/icon.png",
    "128": "static/img/icon.png"
  },
  "commands": {
    "open-typein": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "Command+Space"
      },
      "description": "打开Typein窗口"
    }
  },
  "action": {
    "default_title": "Start Typein"
  },
  "background": {
    "service_worker": "background.main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [],
      "js": [
        "content.main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "contextMenus",
    "webRequest",
    "tabs",
    "history",
    "commands",
    "bookmarks",
    "activeTab",
    "notifications",
    "storage",
    "unlimitedStorage",
    "downloads",
    "cookies",
    "management",
    "webNavigation"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}