英语生词本

英语生词本

你划过的词都会自动备份到生词本中,随机跳出来温习。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "英语生词本",
  "manifest_version": 2,
  "version": "0.1.0",
  "description": "你划过的词都会自动备份到生词本中,随机跳出来温习。",
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "remind.html"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "gun.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "myscript.js"
      ]
    }
  ]
}