Google Traduction

Google Traduction

Adds a 'translate' button when text is selected.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Google Traduction",
  "version": "1.3",
  "description": "Adds a 'translate' button when text is selected.",
  "icons": {
    "48": "icons/icon.png"
  },
  "web_accessible_resources": [
    "icons/icon.png"
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://translate.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{617216fd-13e2-460f-a63c-fa87ff42a213}"
    }
  }
}