Examine source code of Google Classic Image Search

Inspect and view changes in Google Classic Image Search 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": "Classic Image Search",
  "version": "1.0",
  "description": "An extremely simple extension to bring classic Google image search to Firefox.",
  "icons": {
    "48": "icons/logo_48.png"
  },
  "browser_action": {
    "default_icon": "icons/logo_48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "menus",
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{03446229-8454-4d34-be94-60487d794956}"
    }
  }
}