Make Giphy Great Again

Make Giphy Great Again

Giphy dominates search results for GIFs, but they show a static image to try to get you to use their platform. This fixes that.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Make Giphy Great Again",
  "description": "Giphy dominates search results for GIFs, but they show a static image to try to get you to use their platform. This fixes that.",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.giphy.com/media/*"
  ],
  "icons": {
    "48": "logo-48.png",
    "128": "logo-128.png"
  }
}