Easy Do - 高效英语学习辅助工具

学习英语的好助手,快速进行语法纠错、翻译、造句、单复数转化。简单且极简的插件,为高效学习而打造
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": "Easy Do - 高效英语学习辅助工具",
  "version": "1.2.0",
  "description": "学习英语的好助手,快速进行语法纠错、翻译、造句、单复数转化。简单且极简的插件,为高效学习而打造",
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "background": {
    "service_worker": "static/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "static/index.js"
      ],
      "css": [
        "static/index.css"
      ],
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo.png",
        "static/index.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}