GIFs for GitHub

GIFs for GitHub

Easily search GIPHY to add a GIF into any GitHub comment box.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GIFs for GitHub",
  "version": "24.1.18",
  "description": "Easily search GIPHY to add a GIF into any GitHub comment box.",
  "browser_action": {
    "default_icon": "/images/icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "{443bc2e2-8fa9-44ec-828a-fd84c0664f8d}"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "https://api.giphy.com/*"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "background": {
    "scripts": [
      "/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "css": [
        "/style.css"
      ],
      "js": [
        "/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/images/icon128.png",
    "/images/icon16.png",
    "/images/icon48.png",
    "/images/powered-by-giphy.png"
  ]
}