S3.Translator

S3.Translator

Translation of selected text, introduced by a phrase or a fully web-site from any language to any language

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "author": "Oleksandr Popov",
  "homepage_url": "https://www.s3blog.org/s3translator.html",
  "version": "6.29",
  "minimum_chrome_version": "45",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "s3@translator"
    }
  },
  "icons": {
    "16": "skin/s3gt_logo_16.png",
    "32": "skin/s3gt_logo_32.png",
    "48": "skin/s3gt_logo_48.png"
  },
  "browser_action": {
    "default_title": "__MSG_extension_name__",
    "default_icon": "skin/s3gt_logo_16.png",
    "default_popup": "content/popup.html"
  },
  "background": {
    "page": "content/background.html"
  },
  "options_ui": {
    "page": "content/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "js": [
        "/content/tab_loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "/skin/*",
    "/locale/*",
    "/content/tooltip_fly.html"
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "tabs",
    "notifications",
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "clipboardRead",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "downloads",
    "<all_urls>"
  ]
}