Examine source code of CorrectEnglish for FireFox

Inspect and view changes in CorrectEnglish for FireFox 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
{
  "name": "CorrectEnglish",
  "version": "3.2.26",
  "description": "Provides spelling and grammar feedback inline wherever you write on the web.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs",
    "identity",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/contentscriptstart.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon.ce_16.png",
      "24": "images/icon.ce_24.png",
      "32": "images/icon.ce_32.png",
      "48": "images/icon.ce_48.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "images/icon.ce_16.png",
    "24": "images/icon.ce_24.png",
    "32": "images/icon.ce_32.png",
    "48": "images/icon.ce_48.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{22643ca0-cbff-4012-bc17-b47763583426}"
    }
  }
}