Examine source code of MyWords2

Inspect and view changes in MyWords2 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,
  "name": "MyWords2",
  "author": "Mikhail Derachits",
  "developer": {
    "name": "Mikhail Derachits"
  },
  "version": "9.2",
  "description": "Word tranlator",
  "browser_action": {
    "default_icon": {
      "16": "image-16.png",
      "32": "image-32.png"
    },
    "browser_style": true,
    "default_title": "MyWords2"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://translate.yandex.net/*",
    "activeTab"
  ]
}