Translator : Select and Translate

Translator : Select and Translate

It is n inline translator which will translate the selected text within the webpage so you don't have to interrupt your reading.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Translator : Select and Translate",
  "version": "1.0.0",
  "web_accessible_resources": [
    "images/icon16.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "popUp/index.html",
    "default_title": "Define"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}