Examine source code of FoxComments

Inspect and view changes in FoxComments 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": "FoxComments",
  "version": "1.0.1",
  "description": "Opens all the HTML comments of the current page on a new tab",
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "webNavigation",
    "scripting"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/icons8-fox-32.png"
    }
  },
  "web_accessible_resources": [
    "view-source.html",
    "view-source.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{73371072-b8c2-4dd8-b8eb-6031eabdcccd}"
    }
  }
}