Notion 中文版

Notion 中文版

对Notion进行中文汉化

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notion 中文版",
  "short_name": "Notion 中文版",
  "description": "对Notion进行中文汉化",
  "version": "1.5",
  "homepage_url": "https://wyz.xyz/",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon-16.png",
    "default_title": "Notion 中文版",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/site/notion.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*",
        "*://*.notion.site/*"
      ],
      "js": [
        "js/notion.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}