Examine source code of Image compression, webp & jp2 -Squeezeimg

Inspect and view changes in Image compression, webp & jp2 -Squeezeimg 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": "Squeezeimg - images compress, webp & jp2",
  "description": "This extension will optimization image a page using Squeezeimg",
  "version": "0.4.11",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/single.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "downloads",
    "contextMenus",
    "storage",
    "cookies",
    "http://*/*",
    "https://*/*"
  ]
}