Seek 快速翻译

Seek 快速翻译

快速翻译, 提供音标展示和四种读音

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Seek 快速翻译",
  "description": "快速翻译, 提供音标展示和四种读音",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "seek_translate_content.css"
      ],
      "js": [
        "zepto.js",
        "seek_translate_content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "zepto.js",
      "seek_translate_background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "http://*/",
    "https://*/"
  ]
}