Chrome Video To GIF

Chrome Video To GIF

FREE FOR A LIMITED TIME ONLY This allows you to download HTML5 videos from web pages as gif files. Mostly intended to be used on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Video To GIF",
  "version": "1.0.1",
  "permissions": [
    "<all_urls>",
    "http://*/",
    "https://*/",
    "https://pbs.twimg.com/",
    "https://twitter.com/",
    "tabs"
  ],
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/extension.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "worker.js",
    "node_modules/videoconverter/build/ffmpeg.js"
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  }
}