教材下载

下载国家中小学智慧教育平台中的各年级、各科目的电子教材
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "教材下载",
  "description": "下载国家中小学智慧教育平台中的各年级、各科目的电子教材",
  "version": "1.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.zxx.edu.cn/tchMaterial/detail?contentType=*",
        "https://basic.smartedu.cn/tchMaterial/detail?contentType=*"
      ],
      "run_at": "document_start",
      "js": [
        "content2.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "webRequest",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/book16.png",
    "32": "images/book32.png",
    "48": "images/book48.png",
    "128": "images/book128.png"
  },
  "default_locale": "zh_CN",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}