Examine source code of GIPHY for Gmail

Inspect and view changes in GIPHY for Gmail 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": "GIPHY for Gmail",
  "version": "3.15",
  "description": "Add the power of GIPHY to your Gmail experience. Search and discover the best GIFs for your every email need quickly and easily.",
  "manifest_version": 3,
  "icons": {
    "128": "/img/128x128_vertical.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "./index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {},
  "host_permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/"
  ]
}