Gifkitty

Gifkitty

Gif Picker for Product Hunt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gifkitty",
  "version": "1.0",
  "description": "Gif Picker for Product Hunt",
  "content_scripts": [
    {
      "matches": [
        "*://*.producthunt.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "app.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "permissions": [
    "*://api.giphy.com/*",
    "webRequest"
  ],
  "web_accessible_resources": [
    "giphy.png"
  ],
  "icons": {
    "48": "icons/gk-48.png"
  }
}