Translate Anywhere

Translate Anywhere

You can translate sentences that you select on the web page into various languages. You can also translate the whole page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extentionTitle__",
  "description": "__MSG_extentionDescription__",
  "version": "4.1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "homepage_url": "https://orca-soft.net/web/",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_extentionDefault_title__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/app16.png",
    "32": "icons/app32.png",
    "64": "icons/app64.png",
    "128": "icons/app128.png"
  },
  "background": {
    "scripts": [
      "jq.js",
      "bg.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "jq.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "http://*/",
    "https://*/",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "jq.js",
    "trans.js",
    "popup.html",
    "frame.html",
    "resize.png"
  ]
}