划词翻译(柯林斯词典)+扇贝生词本

划词翻译(柯林斯词典)+扇贝生词本

查询单词柯林斯释义,支持划词翻译,数据来源于有道词典。接入扇贝生词本,快速记录新单词,方便未来学习。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "划词翻译(柯林斯词典)+扇贝生词本",
  "description": "查询单词柯林斯释义,支持划词翻译,数据来源于有道词典。接入扇贝生词本,快速记录新单词,方便未来学习。",
  "version": "1.2.4",
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "./icons/icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "event_page.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "MacCtrl+Q"
      }
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "http://dict.youdao.com/"
  ]
}