Examine source code of Flies

Inspect and view changes in Flies 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flies",
  "version": "1.1.0",
  "description": "A browser extension for the Fly-swatting-contest",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png",
      "240": "images/icon240.png"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "240": "images/icon240.png"
  },
  "background": {
    "scripts": [
      "jquery-3.4.1.min.js"
    ]
  },
  "manifest_version": 2
}