HOTPOOR划词翻译Beta

HOTPOOR划词翻译Beta

翻译·Translate的Chrome扩展,支持中文转英文,和英文转中文,由HOTPOOR团队出品。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HOTPOOR划词翻译Beta",
  "version": "0.1.1",
  "description": "翻译·Translate的Chrome扩展,支持中文转英文,和英文转中文,由HOTPOOR团队出品。",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "HOTPOOR划词翻译Beta",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.12.4.min.js",
        "js/translate_content.js"
      ],
      "css": [
        "css/translate_content.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "ws://*/*",
    "wss://*/*"
  ]
}