Examine source code of WebTranslate

Inspect and view changes in WebTranslate source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "2.0.5",
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "48": "/images/weTranslate48.png",
    "96": "/images/weTranslate96.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_popup": "./data/html/popup_menu.html",
    "default_icon": {
      "16": "/images/weTranslate16.png",
      "32": "/images/weTranslate32.png"
    }
  },
  "background": {
    "scripts": [
      "./data/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./data/js/content-script.js",
        "./data/js/injectionHelper.js",
        "./data/js/tingle.js"
      ],
      "css": [
        "./data/css/tingle.css"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "98a81af4-fb95-4bd5-addd-72e6d3957dde@webtranslate.fr"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "menus",
    "storage"
  ]
}