Examine source code of 知乎·想法 - 导出我的想法

Inspect and view changes in 知乎·想法 - 导出我的想法 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": "知乎·想法 - 导出我的想法",
  "version": "1.1.1",
  "description": "支持导出自己账号中❤️想法栏目的内容",
  "default_locale": "zh_CN",
  "icons": {
    "16": "assets/images/icon-16.png",
    "48": "assets/images/icon-48.png",
    "128": "assets/images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/images/icon-16.png",
      "32": "assets/images/icon-32.png",
      "48": "assets/images/icon-48.png",
      "128": "assets/images/icon-128.png"
    },
    "default_title": "Save to Pocket",
    "default_popup": "pages/popup/popup.html"
  },
  "background": {
    "service_worker": "pages/background/index.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*.uqugu.com/*"
  ],
  "permissions": [
    "scripting",
    "activeTab",
    "tabs"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "pages/import-content.js"
      ],
      "matches": [
        "https://www.zhihu.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "pages/content.js"
      ],
      "matches": [
        "https://www.zhihu.com/*",
        "*://*.uqugu.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}