GIFs for YouTube™

GIFs for YouTube™

Easily search GIFs to add a GIF into any YouTube™ comment box. Be the first to express yourself with GIFs on YouTube™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval' blob:; object-src 'self'",
  "version": "1.0.0",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-x16.png",
    "48": "images/icon-x48.png",
    "128": "images/icon-x128.png"
  },
  "background": {
    "scripts": [
      "scripts/jquery.js",
      "scripts/background.js"
    ]
  },
  "permissions": [
    "https://*.youtube.com/*",
    "https://*.browserappsdev.xyz/*",
    "https://*.giphy.com/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "alarms",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?v=*"
      ],
      "exclude_matches": [
        "https://www.youtube.com/c/*/community",
        "*://*/*channel*",
        "*://*/*post*"
      ],
      "css": [
        "style/main.css"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "homepage_url": "https://www.browserappsdev.xyz/2020/10/gifs-for-youtube.html"
}