Examine source code of Progressive Immersion Pinyin

Inspect and view changes in Progressive Immersion Pinyin 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": "Progressive Immersion Pinyin",
  "description": "A browser extension that progressively immerses you in a language.",
  "icons": {
    "48": "images/logo-48.png",
    "96": "images/logo-96.png"
  },
  "version": "0.8.9",
  "permissions": [
    "webRequest",
    "alarms",
    "storage",
    "downloads",
    "unlimitedStorage",
    "https://translate.google.com/*"
  ],
  "browser_action": {
    "default_icon": "images/logo-32.png",
    "default_title": "Progressive Immersion Pinyin",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_scripts/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background_scripts/main.js"
    ]
  },
  "options_ui": {
    "page": "options/index.html",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{3775590d-0935-40d9-8e8d-01fd74c809da}"
    }
  }
}