Examine source code of Photor: 让你的截图不再单调

Inspect and view changes in Photor: 让你的截图不再单调 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,
  "version": "1.0.0",
  "name": "Photor: 让你的截图不再单调",
  "description": "Photor 是一款使用简单但功能强大的浏览器截图插件。摆脱单调的截图体验,即刻使用,开始创建漂亮且富有创意的截图吧。",
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./photor_sceen_shot.js"
      ]
    },
    {
      "matches": [
        "https://*.photor.fun/*"
      ],
      "js": [
        "./photor_content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "./icon/icon-32.png",
    "32": "./icon/icon-64.png",
    "48": "./icon/icon-96.png",
    "128": "./icon/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}